summaryrefslogtreecommitdiffstats
path: root/konsolekalendar
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-02-04 00:55:27 +0100
committerSlávek Banko <slavek.banko@axis.cz>2020-02-04 00:55:27 +0100
commit53214d124e4806809fabe83d614c06e3d1552089 (patch)
tree43991147406077d418143bad748bb9feeafcca5f /konsolekalendar
parent90c6a46c9c8d9d18e74302fa43b80ef77ce48f93 (diff)
downloadtdepim-53214d124e4806809fabe83d614c06e3d1552089.tar.gz
tdepim-53214d124e4806809fabe83d614c06e3d1552089.zip
Fix multiple processing of kcfgc files in the same directory.
Instead, processing into the current binary directory is performed. This resolves FTBFS with ninja-build. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'konsolekalendar')
-rw-r--r--konsolekalendar/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/konsolekalendar/CMakeLists.txt b/konsolekalendar/CMakeLists.txt
index 2c736bc5..8738d401 100644
--- a/konsolekalendar/CMakeLists.txt
+++ b/konsolekalendar/CMakeLists.txt
@@ -38,18 +38,18 @@ install( FILES konsolekalendar.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
##### helper ####################################
macro( process_kcfg _who _out _path _kcfg _kcfgc )
- add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/${_path}/${_out}
+ add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_path}/${_out}
COMMAND
- mkdir -p ${CMAKE_BINARY_DIR}/${_path}
+ mkdir -p ${CMAKE_CURRENT_BINARY_DIR}/${_path}
COMMAND ${KDE3_KCFGC_EXECUTABLE}
- -d ${CMAKE_BINARY_DIR}/${_path}
+ -d ${CMAKE_CURRENT_BINARY_DIR}/${_path}
${CMAKE_SOURCE_DIR}/${_path}/${_kcfg}
${CMAKE_SOURCE_DIR}/${_path}/${_kcfgc}
DEPENDS
${CMAKE_SOURCE_DIR}/${_path}/${_kcfg}
${CMAKE_SOURCE_DIR}/${_path}/${_kcfgc} )
set_property( SOURCE ${_who} APPEND
- PROPERTY OBJECT_DEPENDS ${CMAKE_BINARY_DIR}/${_path}/${_out} )
+ PROPERTY OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_path}/${_out} )
endmacro( )