diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 1a1b7c6d..c7ba44c6 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -68,7 +68,7 @@ if(APPLE) target_link_directories(gpgfrontend_core PRIVATE /usr/local/opt/icu4c/lib) target_link_libraries(gpgfrontend_core PRIVATE icui18n icuuc) else() - find_package(ICU 70.0 REQUIRED COMPONENTS i18n) + find_package(ICU 60.0 REQUIRED COMPONENTS i18n) target_link_libraries(gpgfrontend_core PRIVATE ICU::i18n) endif() @@ -99,7 +99,7 @@ target_compile_features(gpgfrontend_core PUBLIC cxx_std_17) # link for different platforms if (MINGW) message(STATUS "Link GPG Static Library For MINGW") - target_link_libraries(gpgfrontend_core wsock32) + target_link_libraries(gpgfrontend_core PUBLIC wsock32) elseif (APPLE) message(STATUS "Link GPG Static Library For macOS") target_link_libraries(gpgfrontend_core PUBLIC dl) @@ -115,5 +115,5 @@ elseif (APPLE) else () # linux message(STATUS "Link GPG Static Library For Unix") - target_link_libraries(gpgfrontend_core pthread dl) + target_link_libraries(gpgfrontend_core PUBLIC pthread dl) endif () |