diff options
author | Pierre Ossman <ossman@cendio.se> | 2014-09-18 15:15:38 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2014-09-18 15:15:38 +0200 |
commit | c73caa9d402958b57dcd96246c719c2f21764a6b (patch) | |
tree | 4833f5e9b7c233736a4cdb2edc8c96a9980415a0 | |
parent | 38023dc304ed55823e01cc402a2de79156bb7a7c (diff) | |
download | tigervnc-c73caa9d402958b57dcd96246c719c2f21764a6b.tar.gz tigervnc-c73caa9d402958b57dcd96246c719c2f21764a6b.zip |
CMake needs to have the quotes at the end to work properly
-rw-r--r-- | po/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt index f36b15df..6dd092e5 100644 --- a/po/CMakeLists.txt +++ b/po/CMakeLists.txt @@ -19,13 +19,13 @@ if (GETTEXT_XGETTEXT_EXECUTABLE) add_custom_target(translations_update ${GETTEXT_XGETTEXT_EXECUTABLE} - --directory="${PROJECT_SOURCE_DIR}" - --output="${CMAKE_CURRENT_SOURCE_DIR}/tigervnc.pot" + "--directory=${PROJECT_SOURCE_DIR}" + "--output=${CMAKE_CURRENT_SOURCE_DIR}/tigervnc.pot" --default-domain=tigervnc --keyword=_ --keyword=N_ - --copyright-holder="TigerVNC Team and many others \(see README.txt\)" - --msgid-bugs-address="tigervnc-devel@lists.sourceforge.net" + "--copyright-holder=TigerVNC Team and many others \(see README.txt\)" + --msgid-bugs-address=tigervnc-devel@lists.sourceforge.net --sort-output --no-location ${po_source} |