diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-26 16:27:44 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-09-26 16:48:23 (GMT) |
commit | f9a77e76e4e1c19c094ff770487e677a92a1198b (patch) | |
tree | 0e4b4faccb6f864b1d71408a99b82f6ffe8548bc /Source/cmQtAutoGenerators.h | |
parent | c3633e7a416373e6c8e8f87b4920a8a41c5afd82 (diff) | |
download | CMake-f9a77e76e4e1c19c094ff770487e677a92a1198b.zip CMake-f9a77e76e4e1c19c094ff770487e677a92a1198b.tar.gz CMake-f9a77e76e4e1c19c094ff770487e677a92a1198b.tar.bz2 |
QtAutogen: Don't use a member to store skipped uic files.
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index 25e045f..c1dac2b 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -33,7 +33,8 @@ public: bool InitializeAutogenTarget(cmLocalGenerator* lg, cmTarget* target); void SetupAutoGenerateTarget(cmTarget const* target); - void SetupSourceFiles(cmTarget const* target); + void SetupSourceFiles(cmTarget const* target, + std::vector<std::string>& skipUic); private: void SetupAutoMocTarget(cmTarget const* target, @@ -41,6 +42,7 @@ private: std::map<std::string, std::string> &configIncludes, std::map<std::string, std::string> &configDefines); void SetupAutoUicTarget(cmTarget const* target, + const std::vector<std::string>& skipUic, std::map<std::string, std::string> &configUicOptions); void SetupAutoRccTarget(cmTarget const* target); |