diff options
author | Julian Andres Klode <jak@debian.org> | 2016-08-23 18:42:52 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-08-23 18:46:10 +0200 |
commit | ac103d45f63bd9a57ff867a52c7c95616f6daf51 (patch) | |
tree | c83ae73cfd6c447bb21ef12ffcd87eb361f253af | |
parent | 9fb81c6e54a2fe05c0ad0b877fd32f30358e3877 (diff) |
CMake: Do not add po/ if USE_NLS is OFF
Previously, we would have generated all the translations, but not
turn them on in the code. Instead, move the Translation crap into
po/ and disable po/ alltogether if USE_NLS if OFF.
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | po/CMakeLists.txt | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b63cfe0e8..a43abfb78 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,6 @@ endif() # Include stuff include(Misc) -include(Translations) include(CheckIncludeFiles) include(CheckFunctionExists) include(CheckStructHasMember) @@ -144,11 +143,14 @@ add_subdirectory(doc) add_subdirectory(dselect) add_subdirectory(ftparchive) add_subdirectory(methods) -add_subdirectory(po) add_subdirectory(test) +if (USE_NLS) +add_subdirectory(po) + # Link update-po4a into the update-po target add_dependencies(update-po update-po4a) +endif() # Create our directories. install_empty_directories( diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt index 174cc5d41..258c9b050 100644 --- a/po/CMakeLists.txt +++ b/po/CMakeLists.txt @@ -1,3 +1,5 @@ +include(Translations) + set(languages_excluded he ## disabled by translator request #313283 ) |