summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2008-02-08 04:26:42 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2008-02-08 04:26:42 (GMT)
commite6c9f302f201a2923af21b112047c15ef1bce547 (patch)
treee9fedbdeeacd36bbca2cf2f788ead560f53fc521 /Modules
parent251565785a87c9edad62b1224778c23740b64e9c (diff)
downloadCMake-e6c9f302f201a2923af21b112047c15ef1bce547.zip
CMake-e6c9f302f201a2923af21b112047c15ef1bce547.tar.gz
CMake-e6c9f302f201a2923af21b112047c15ef1bce547.tar.bz2
BUG: Fix arg for moc parameter file so it works with unix makefiles, when the
build dir has a space in it.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/FindQt4.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindQt4.cmake b/Modules/FindQt4.cmake
index a9d0815..e8778e4 100644
--- a/Modules/FindQt4.cmake
+++ b/Modules/FindQt4.cmake
@@ -938,7 +938,7 @@ IF (QT4_QMAKE_FOUND)
ENDFOREACH(arg)
ADD_CUSTOM_COMMAND(OUTPUT ${outfile}
COMMAND ${QT_MOC_EXECUTABLE}
- ARGS @"${_moc_parameters_file}"
+ ARGS "@${_moc_parameters_file}"
DEPENDS ${infile})
ELSE (WIN32)
ADD_CUSTOM_COMMAND(OUTPUT ${outfile}