diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2010-07-12 15:48:51 -0400 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-01 13:08:14 -0400 |
commit | f794d589a44918c905911eb7688d69350922c6b3 (patch) | |
tree | c5893a8eff5b26496740c5e4b77e47ca73268c8b /Source/QtDialog/QCMake.h | |
parent | 48b5b855934be341c02139c0bed88c35c1b40d8f (diff) | |
download | cmake-f794d589a44918c905911eb7688d69350922c6b3.tar.gz |
Make --strict-mode option, and integrate with cmake-gui
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r-- | Source/QtDialog/QCMake.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index bbfb3d7c56..f20893f225 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -88,6 +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); public: /// get the list of cache properties @@ -133,6 +135,7 @@ protected: static void errorCallback(const char* msg, const char* title, bool&, void* cd); bool SuppressDevWarnings; + bool StrictMode; QString SourceDirectory; QString BinaryDirectory; QString Generator; |