diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-04-22 11:12:58 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-04-22 11:21:18 (GMT) |
commit | 5965a589154e64ba3997c28a718652f54a84c631 (patch) | |
tree | e6150ef554f2e651f6b2d64b7b3ca4b7de7552e8 /Source/cmQtAutoGenerators.h | |
parent | 46ba6abe498f1fd6cd286213ab7a4a9dfa6f15fb (diff) | |
download | CMake-5965a589154e64ba3997c28a718652f54a84c631.zip CMake-5965a589154e64ba3997c28a718652f54a84c631.tar.gz CMake-5965a589154e64ba3997c28a718652f54a84c631.tar.bz2 |
Autogen: Determine settings file name only once
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index a15efc1..7ef2d6e 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -44,9 +44,8 @@ private: bool RccEnabled() const { return !this->RccExecutable.empty(); } // -- Settings file - void SettingsFileRead(cmMakefile* makefile, - const std::string& targetDirectory); - bool SettingsFileWrite(const std::string& targetDirectory); + void SettingsFileRead(cmMakefile* makefile); + bool SettingsFileWrite(); bool AnySettingsChanged() const { @@ -176,6 +175,7 @@ private: bool IncludeProjectDirsBefore; bool Verbose; bool ColorOutput; + std::string SettingsFile; std::string SettingsStringMoc; std::string SettingsStringUic; std::string SettingsStringRcc; |