summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-26 23:28:27 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-26 23:28:27 (GMT)
commiteecf4b9cbf86e64d48f0fa3eb3eb622cb5d366b0 (patch)
treeb363ca85f505b2cd720700bcb71fa47f45459346 /Source/cmSystemTools.h
parent3e24edcd04234c20a5c3045a7af9ff482fd61a45 (diff)
downloadCMake-eecf4b9cbf86e64d48f0fa3eb3eb622cb5d366b0.zip
CMake-eecf4b9cbf86e64d48f0fa3eb3eb622cb5d366b0.tar.gz
CMake-eecf4b9cbf86e64d48f0fa3eb3eb622cb5d366b0.tar.bz2
ENH: add advanced variable types and command line wizard gui
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index 9e7fc35..e9f9f29 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -287,9 +287,13 @@ public:
static void EnableMessages() { s_DisableMessages = false; }
static void DisableMessages() { s_DisableMessages = true; }
+ static void DisableRunCommandOutput() {s_DisableRunCommandOutput = true; }
+ static void EnableRunCommandOutput() {s_DisableRunCommandOutput = false; }
+
private:
static bool s_ErrorOccured;
static bool s_DisableMessages;
+ static bool s_DisableRunCommandOutput;
static ErrorCallback s_ErrorCallback;
};