diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-10 14:45:27 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-12-11 14:30:12 (GMT) |
commit | c62cd3e2aeb9ed7e3021bd9e5863294fd0441790 (patch) | |
tree | 321e22067125372bd322f64a4d04de04c49e8ee4 /Source/cmQtAutoGenerators.h | |
parent | 035b6908829f524936a6819a342cdff145708529 (diff) | |
download | CMake-c62cd3e2aeb9ed7e3021bd9e5863294fd0441790.zip CMake-c62cd3e2aeb9ed7e3021bd9e5863294fd0441790.tar.gz CMake-c62cd3e2aeb9ed7e3021bd9e5863294fd0441790.tar.bz2 |
Constify autogen handling.
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index 0888ea4..80123d8 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -24,17 +24,17 @@ public: bool Run(const char* targetDirectory, const char *config); bool InitializeAutogenTarget(cmTarget* target); - void SetupAutoGenerateTarget(cmTarget* target); + void SetupAutoGenerateTarget(cmTarget const* target); private: - void SetupAutoMocTarget(cmTarget* target, + void SetupAutoMocTarget(cmTarget const* target, const std::string &autogenTargetName, std::map<std::string, std::string> &configIncludes, std::map<std::string, std::string> &configDefines); - void SetupAutoUicTarget(cmTarget* target, + void SetupAutoUicTarget(cmTarget const* target, std::map<std::string, std::string> &configUicOptions); void InitializeAutoRccTarget(cmTarget* target); - void SetupAutoRccTarget(cmTarget* target); + void SetupAutoRccTarget(cmTarget const* target); cmGlobalGenerator* CreateGlobalGenerator(cmake* cm, const char* targetDirectory); |