From 44755b2af3e1ea9110735b119e2c7d1538fae46f Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 12 Jul 2024 15:14:20 +0200 Subject: lang: add translation tests --- test_support/CMakeLists.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'test_support/CMakeLists.txt') diff --git a/test_support/CMakeLists.txt b/test_support/CMakeLists.txt index fe30782..bb2ae4f 100644 --- a/test_support/CMakeLists.txt +++ b/test_support/CMakeLists.txt @@ -1,5 +1,7 @@ get_target_property(TRANSLATIONS_BINARY_DIR "lang" BINARY_DIR) +# GTK test support + add_library("test_support-gtk" OBJECT "src/gtk_main.cpp" ) @@ -20,3 +22,24 @@ target_link_libraries("test_support-gtk" PUBLIC "PkgConfig::adwaita" "PkgConfig::gtkmm" ) + +# Intl test support + +add_library("test_support-intl" OBJECT + "src/intl_main.cpp" +) + +add_library("turns::intl-test-main" ALIAS "test_support-intl") + +target_compile_features("test_support-intl" PRIVATE + "cxx_std_23" +) + +target_compile_definitions("test_support-intl" PUBLIC + "TESTLOCALEDIR=\"${TRANSLATIONS_BINARY_DIR}\"" +) + +target_link_libraries("test_support-intl" PUBLIC + "Intl::Intl" + "turns::lang" +) -- cgit v1.2.3