File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ MACRO(PYSIDE_WRAP_UI outfiles)
41
41
# pyside-uic generates in comments at beginning, which is why
42
42
# we follow the tool command with in-place sed.
43
43
ADD_CUSTOM_COMMAND (OUTPUT ${outfile}
44
- COMMAND ${PYSIDEUIC4BINARY} "${infile} " -o "${outfile} "
44
+ COMMAND " ${PYSIDEUIC4BINARY} " "${infile} " -o "${outfile} "
45
45
COMMAND sed -i "/^# /d" "${outfile} "
46
- MAIN_DEPENDENCY ${infile}
46
+ MAIN_DEPENDENCY " ${infile} "
47
47
)
48
48
endif (WIN32 )
49
49
list (APPEND ${outfiles} ${outfile} )
@@ -72,10 +72,10 @@ MACRO(PYSIDE_WRAP_RC outfiles)
72
72
# Especially on Open Build Service we don't want changing date like
73
73
# pyside-rcc generates in comments at beginning, which is why
74
74
# we follow the tool command with in-place sed.
75
- ADD_CUSTOM_COMMAND (OUTPUT ${outfile}
76
- COMMAND ${PYSIDERCC4BINARY} "${infile} " ${PY_ATTRIBUTE} -o "${outfile} "
75
+ ADD_CUSTOM_COMMAND (OUTPUT " ${outfile} "
76
+ COMMAND " ${PYSIDERCC4BINARY} " "${infile} " ${PY_ATTRIBUTE} -o "${outfile} "
77
77
COMMAND sed -i "/^# /d" "${outfile} "
78
- MAIN_DEPENDENCY ${infile}
78
+ MAIN_DEPENDENCY " ${infile} "
79
79
)
80
80
endif (WIN32 )
81
81
list (APPEND ${outfiles} ${outfile} )
You can’t perform that action at this time.
0 commit comments