summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGenerators.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-09-26 17:25:00 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-09-26 17:32:50 (GMT)
commita3ceb998d7768592b670abd2a8d0dd2777c84789 (patch)
tree45edd88f495dd49836dac013cb3fca0ffc5fccd3 /Source/cmQtAutoGenerators.h
parentdced2fe10f55222ece04c12693d68e13e30771d0 (diff)
downloadCMake-a3ceb998d7768592b670abd2a8d0dd2777c84789.zip
CMake-a3ceb998d7768592b670abd2a8d0dd2777c84789.tar.gz
CMake-a3ceb998d7768592b670abd2a8d0dd2777c84789.tar.bz2
QtAutogen: Don't use members to initialize automoc targets.
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r--Source/cmQtAutoGenerators.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h
index c1dac2b..6741139 100644
--- a/Source/cmQtAutoGenerators.h
+++ b/Source/cmQtAutoGenerators.h
@@ -34,11 +34,16 @@ public:
bool InitializeAutogenTarget(cmLocalGenerator* lg, cmTarget* target);
void SetupAutoGenerateTarget(cmTarget const* target);
void SetupSourceFiles(cmTarget const* target,
+ std::vector<std::string>& skipMoc,
+ std::vector<std::string>& mocSources,
+ std::vector<std::string>& mocHeaders,
std::vector<std::string>& skipUic);
private:
void SetupAutoMocTarget(cmTarget const* target,
const std::string &autogenTargetName,
+ const std::vector<std::string>& skipMoc,
+ const std::vector<std::string>& mocHeaders,
std::map<std::string, std::string> &configIncludes,
std::map<std::string, std::string> &configDefines);
void SetupAutoUicTarget(cmTarget const* target,