aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>2006-07-17 18:22:05 +0000
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>2006-07-17 18:22:05 +0000
commit873e779682f1a3f7d45657c88c7a33acbb9126aa (patch)
tree9eeb2461bc508cf712065cb290cd260acab96f4a /modules
parent2f48fe6095a4dfd09c1130a4d3b5d4ffb4666e08 (diff)
downloadextra-cmake-modules-873e779682f1a3f7d45657c88c7a33acbb9126aa.tar.gz
extra-cmake-modules-873e779682f1a3f7d45657c88c7a33acbb9126aa.tar.bz2
fix for win32 - why it's only me who needs this?
CCMAIL: syntheticpp@gmx.net svn path=/trunk/KDE/kdelibs/; revision=563490
Diffstat (limited to 'modules')
-rw-r--r--modules/KDE4Macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake
index 2158a81f..91aaa53e 100644
--- a/modules/KDE4Macros.cmake
+++ b/modules/KDE4Macros.cmake
@@ -335,8 +335,8 @@ macro (KDE4_HANDLE_RPATH _target_NAME _type)
# use add_custom_target() to have the batch-file-wrapper generated during build time instead of cmake time
add_custom_command(TARGET ${_target_NAME} POST_BUILD
COMMAND ${CMAKE_COMMAND}
- -D_filename=${_executable}.bat
- -D_ld_library_path="${_ld_library_path}" -D_executable=${_executable}
+ -D_filename="${_executable}.bat"
+ -D_ld_library_path="${_ld_library_path}" -D_executable="${_executable}"
-P ${KDE4_MODULE_DIR}/kde4_exec_via_sh.cmake
)