summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutomoc.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-10-07 19:44:33 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-10-07 19:44:33 (GMT)
commit3e2e0609997f0be87f161527d4270fbbe88b04c0 (patch)
tree6848c791b1e1168a93cc43511b60ca0cd2787e51 /Source/cmQtAutomoc.cxx
parent9939c99bc6c46aaa0639555ebf51d11c50610937 (diff)
parent027a0201b270e582d76c1de94a60c19a2a8e505c (diff)
downloadCMake-3e2e0609997f0be87f161527d4270fbbe88b04c0.zip
CMake-3e2e0609997f0be87f161527d4270fbbe88b04c0.tar.gz
CMake-3e2e0609997f0be87f161527d4270fbbe88b04c0.tar.bz2
Merge topic 'generate-modern-style'
027a020 Merge branch 'test-property-genex' into generate-modern-style 33055c4 Generate modern-style cmake code.
Diffstat (limited to 'Source/cmQtAutomoc.cxx')
-rw-r--r--Source/cmQtAutomoc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutomoc.cxx b/Source/cmQtAutomoc.cxx
index 54df12c..651e0ad 100644
--- a/Source/cmQtAutomoc.cxx
+++ b/Source/cmQtAutomoc.cxx
@@ -448,7 +448,7 @@ void cmQtAutomoc::SetupAutomocTarget(cmTarget* target)
it = configDefines.begin(), end = configDefines.end();
it != end; ++it)
{
- infoFile << "SET(AM_MOC_COMPILE_DEFINITIONS_" << it->first <<
+ infoFile << "set(AM_MOC_COMPILE_DEFINITIONS_" << it->first <<
" " << it->second << ")\n";
}
}
@@ -458,7 +458,7 @@ void cmQtAutomoc::SetupAutomocTarget(cmTarget* target)
it = configIncludes.begin(), end = configIncludes.end();
it != end; ++it)
{
- infoFile << "SET(AM_MOC_INCLUDES_" << it->first <<
+ infoFile << "set(AM_MOC_INCLUDES_" << it->first <<
" " << it->second << ")\n";
}
}