aboutsummaryrefslogtreecommitdiff
path: root/modules/KDE4Macros.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2006-01-22 21:30:26 +0000
committerAlexander Neundorf <neundorf@kde.org>2006-01-22 21:30:26 +0000
commit22228526d004d33f669d287643f0a07477a72b1e (patch)
tree731cb2319b5a4391568b19bc83ddbe6fb087f16a /modules/KDE4Macros.cmake
parent5c4afe434448c1d6248c7212294b6c37ae2cdeb3 (diff)
downloadextra-cmake-modules-22228526d004d33f669d287643f0a07477a72b1e.tar.gz
extra-cmake-modules-22228526d004d33f669d287643f0a07477a72b1e.tar.bz2
it seems strtoll doesn't work opn FreeBSD with -ansi
Alex svn path=/trunk/KDE/kdesdk/cmake/; revision=501434
Diffstat (limited to 'modules/KDE4Macros.cmake')
-rw-r--r--modules/KDE4Macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake
index 8cbeb6f8..e3503b33 100644
--- a/modules/KDE4Macros.cmake
+++ b/modules/KDE4Macros.cmake
@@ -106,8 +106,8 @@ MACRO(KDE4_ADD_KCFG_FILES _sources)
ADD_CUSTOM_COMMAND(OUTPUT ${_src_FILE}
COMMAND ${KDE4_KCFGC_EXECUTABLE}
- ARGS ${_kcfg_FILE} ${_tmp_FILE}
- DEPENDS ${_tmp_FILE} )
+ ARGS ${CMAKE_CURRENT_SOURCE_DIR}/${_kcfg_FILE} ${_tmp_FILE}
+ DEPENDS ${_tmp_FILE} ${CMAKE_CURRENT_SOURCE_DIR}/${_kcfg_FILE} )
SET(${_sources} ${${_sources}} ${_src_FILE})