diff options
author | Saturneric <[email protected]> | 2022-05-13 18:09:35 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-13 18:09:35 +0000 |
commit | c8c4ce2cecf5148b5529da76b62469f54e138cda (patch) | |
tree | 2f927897f5c8dcdaed8f88d48d71d4a5b20f639a | |
parent | fix: solve codacy issues (diff) | |
download | GpgFrontend-c8c4ce2cecf5148b5529da76b62469f54e138cda.tar.gz GpgFrontend-c8c4ce2cecf5148b5529da76b62469f54e138cda.zip |
fix: slove shared link problem
-rw-r--r-- | src/core/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index c7ba44c6..61b6e7b0 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -66,7 +66,7 @@ target_sources(gpgfrontend_core PUBLIC ${ENCODING_DETECT_SOURCE_CODE}) if(APPLE) target_include_directories(gpgfrontend_core PRIVATE /usr/local/opt/icu4c/include) target_link_directories(gpgfrontend_core PRIVATE /usr/local/opt/icu4c/lib) - target_link_libraries(gpgfrontend_core PRIVATE icui18n icuuc) + target_link_libraries(gpgfrontend_core PRIVATE icui18n icuuc icudata) else() find_package(ICU 60.0 REQUIRED COMPONENTS i18n) target_link_libraries(gpgfrontend_core PRIVATE ICU::i18n) |