From c630b94873c872e09e81fbe4db56e81f345bca40 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Tue, 28 Feb 2017 22:19:38 +0100 Subject: [PATCH] Fix depend for gettext processing --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ab54da1..eb2936f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -106,7 +106,7 @@ set (_potFile ${CMAKE_CURRENT_SOURCE_DIR}/resources/po/${PROJECT_NAME}.pot) add_custom_command (OUTPUT ${_potFile} COMMAND xgettext --keyword=translate -o ${_potFile} ${sources} - DEPENDS ${sources} + DEPENDS planetblupi ${sources} COMMENT "Extract translatable messages to ${_potFile}" )