diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-27 18:08:23 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-10 11:49:14 (GMT) |
commit | 9986da4f0f2f49c0d7d260f9d21deaa906708376 (patch) | |
tree | 17b17b2f314d0528174f923782cf28f4d110e565 /Source/cmQtAutoGenerators.h | |
parent | d51cc88e844c78c01c1616e6a2fb102c0682dd00 (diff) | |
download | CMake-9986da4f0f2f49c0d7d260f9d21deaa906708376.zip CMake-9986da4f0f2f49c0d7d260f9d21deaa906708376.tar.gz CMake-9986da4f0f2f49c0d7d260f9d21deaa906708376.tar.bz2 |
AUTOGEN: Generators: Split config SKIP_MOC and SKIP_UIC into vectors
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index bffdee2..f86e7c3 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -119,7 +119,7 @@ private: std::vector<std::string> Sources; std::vector<std::string> Headers; // - Moc - std::string SkipMoc; + std::vector<std::string> SkipMoc; std::string MocCompileDefinitionsStr; std::string MocIncludesStr; std::string MocOptionsStr; @@ -129,7 +129,7 @@ private: std::list<std::string> MocDefinitions; std::vector<std::string> MocOptions; // - Uic - std::string SkipUic; + std::vector<std::string> SkipUic; std::vector<std::string> UicTargetOptions; std::map<std::string, std::string> UicOptions; // - Rcc |