diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-08-25 16:35:40 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-01 17:08:14 (GMT) |
commit | d7999e9b294f93f68b5ec9e3efd8017fad3f05d9 (patch) | |
tree | d705db14b00d2b6a22a8335aff2511ed95764489 /Source/QtDialog/QCMake.h | |
parent | e141bc950a1970c6bc96fa5f55fd60c6aedbb2d0 (diff) | |
download | CMake-d7999e9b294f93f68b5ec9e3efd8017fad3f05d9.zip CMake-d7999e9b294f93f68b5ec9e3efd8017fad3f05d9.tar.gz CMake-d7999e9b294f93f68b5ec9e3efd8017fad3f05d9.tar.bz2 |
Rename strict-mode to warn-uninitialized
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r-- | Source/QtDialog/QCMake.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index f20893f..6d2b2ff 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -88,8 +88,8 @@ public slots: void setDebugOutput(bool); /// set whether to do suppress dev warnings void setSuppressDevWarnings(bool value); - /// set whether to run cmake in strict mode - void setStrictMode(bool value); + /// set whether to run cmake with warnings about uninitialized variables + void setWarnUninitializedMode(bool value); public: /// get the list of cache properties @@ -135,7 +135,7 @@ protected: static void errorCallback(const char* msg, const char* title, bool&, void* cd); bool SuppressDevWarnings; - bool StrictMode; + bool WarnUninitializedMode; QString SourceDirectory; QString BinaryDirectory; QString Generator; |