[cmake-commits] clinton committed FindQt4.cmake 1.90 1.91
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu Feb 7 23:26:44 EST 2008
Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv7325
Modified Files:
FindQt4.cmake
Log Message:
BUG: Fix arg for moc parameter file so it works with unix makefiles, when the
build dir has a space in it.
Index: FindQt4.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/FindQt4.cmake,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -d -r1.90 -r1.91
--- FindQt4.cmake 1 Feb 2008 18:52:04 -0000 1.90
+++ FindQt4.cmake 8 Feb 2008 04:26:42 -0000 1.91
@@ -938,7 +938,7 @@
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}
More information about the Cmake-commits
mailing list