diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2008-04-02 21:41:24 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2008-04-02 21:41:24 (GMT) |
commit | 7ff914227d32a8cd4a13e1cbf2ff365fcf194374 (patch) | |
tree | 07ce09b53ebdd645ba59dd6f7c572ebb9c999910 /Source/QtDialog/QCMake.h | |
parent | 6292341841c17af7932d27a21404efef4c9c4b5e (diff) | |
download | CMake-7ff914227d32a8cd4a13e1cbf2ff365fcf194374.zip CMake-7ff914227d32a8cd4a13e1cbf2ff365fcf194374.tar.gz CMake-7ff914227d32a8cd4a13e1cbf2ff365fcf194374.tar.bz2 |
ENH: Add debug output option to a new Options menu.
Move dev warnings option to the new Options menu.
Fixes #6335.
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r-- | Source/QtDialog/QCMake.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index ab7040c..89a19e9 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -87,6 +87,8 @@ public slots: void deleteCache(); /// reload the cache in binary directory void reloadCache(); + /// set whether to do debug output + void setDebugOutput(bool); public: /// get the list of cache properties @@ -99,6 +101,8 @@ public: QString generator() const; /// get the available generators QStringList availableGenerators() const; + /// get whether to do debug output + bool getDebugOutput() const; signals: /// signal when properties change (during read from disk or configure process) @@ -118,6 +122,8 @@ signals: void outputMessage(const QString& msg); /// signal when there is an error message void errorMessage(const QString& msg); + /// signal when debug output changes + void debugOutputChanged(bool); protected: cmake* CMakeInstance; |