aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-15 17:04:05 +0000
committersaturneric <[email protected]>2024-01-15 17:04:05 +0000
commit17ced3db6714aee45b78f868cea73022bf9f83ab (patch)
tree81989b3b0a3ce822c0685cc3aacb59f014ed14ad
parentrefactor: remove libconfig++ form project (diff)
downloadGpgFrontend-17ced3db6714aee45b78f868cea73022bf9f83ab.tar.gz
GpgFrontend-17ced3db6714aee45b78f868cea73022bf9f83ab.zip
refactor: remove libicu from project
-rw-r--r--src/core/CMakeLists.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 53c3c7eb..22b2c01b 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -61,17 +61,6 @@ target_sources(gpgfrontend_core PRIVATE
aux_source_directory(${CMAKE_SOURCE_DIR}/third_party/encoding-detect ENCODING_DETECT_SOURCE_CODE)
target_sources(gpgfrontend_core PUBLIC ${ENCODING_DETECT_SOURCE_CODE})
-# icu
-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 icudata)
-else ()
- find_package(ICU REQUIRED COMPONENTS i18n uc data)
- target_include_directories(gpgfrontend_core PRIVATE ${ICU_INCLUDE_DIRS})
- target_link_libraries(gpgfrontend_core PRIVATE ${ICU_LIBRARIES})
-endif ()
-
# link gnupg libraries
target_link_libraries(gpgfrontend_core PUBLIC gpgme assuan gpg-error)
# link openssl