diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-12 14:29:38 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-12 14:29:38 +0200 |
| commit | 88d45641e8c06936635034cd83c8c7df1bd59439 (patch) | |
| tree | 04bb5c3f83f68edb021b09876242c6493683ebb2 /CMakeLists.txt | |
| parent | 0e2b0878e4c344d1fdbadfb37350bded783789f3 (diff) | |
| download | turns-88d45641e8c06936635034cd83c8c7df1bd59439.tar.xz turns-88d45641e8c06936635034cd83c8c7df1bd59439.zip | |
turns: add basic i18n
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1a15236..1ee538f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,7 @@ include("CheckIPOSupported") include("GlibCompileResources") include("GNUInstallDirs") +find_package("Gettext" REQUIRED) find_package("PkgConfig" REQUIRED) check_ipo_supported(RESULT CAN_DO_IPO LANGUAGES CXX) @@ -53,6 +54,7 @@ include("Catch") add_subdirectory("app") add_subdirectory("domain") +add_subdirectory("lang") add_subdirectory("res") add_subdirectory("test_support") |
