diff options
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; |