diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-01-18 19:44:49 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-01-18 19:44:49 +0000 |
commit | ebc83eb65f94d6903b7aa928867f47567c04399d (patch) | |
tree | 4610590f165990d383a90155be493c558bf29fd2 /modules/KDE4Macros.cmake | |
parent | 3e66a2ffd7de1f61236fbf85b1e313692d2b48de (diff) | |
download | extra-cmake-modules-ebc83eb65f94d6903b7aa928867f47567c04399d.tar.gz extra-cmake-modules-ebc83eb65f94d6903b7aa928867f47567c04399d.tar.bz2 |
-add the dependency to meinproc when building kdelibs to the meinproc macro, so meinproc gets created before the rule is executed
-remove the unnecessary if() around the find_program() calls, they in any way do nothing if it was found already
-add docs for the new meinproc macro to FindKDE4Internal.cmake
Alex
svn path=/trunk/KDE/kdelibs/; revision=625047
Diffstat (limited to 'modules/KDE4Macros.cmake')
-rw-r--r-- | modules/KDE4Macros.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index 19e83c9d..cc491c4c 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -231,7 +231,7 @@ macro (KDE4_CREATE_HTML_HANDBOOK) add_custom_command(OUTPUT ${_doc} COMMAND ${KDE4_MEINPROC_EXECUTABLE} ARGS -o ${_doc} ${_input} - DEPENDS ${_input} + DEPENDS ${_input} ${_KDE4_MEINPROC_EXECUTABLE_DEP} ) endforeach (_current_FILE) endmacro (KDE4_CREATE_HTML_HANDBOOK) |