Browse Source

BUG: Fix arg for moc parameter file so it works with unix makefiles, when the
build dir has a space in it.

Clinton Stimpson 18 years ago
parent
commit
e6c9f302f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Modules/FindQt4.cmake

+ 1 - 1
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}