summaryrefslogtreecommitdiff
path: root/src/system.hh.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/system.hh.in')
-rw-r--r--src/system.hh.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/system.hh.in b/src/system.hh.in
index 35253962..52c8a706 100644
--- a/src/system.hh.in
+++ b/src/system.hh.in
@@ -73,6 +73,29 @@
#cmakedefine01 DEBUG_MODE
#cmakedefine01 NO_ASSERTS
+/**
+ * @name Default values
+ */
+/*@{*/
+
+#if DEBUG_MODE
+#define DEBUG_ON 1
+#define VERIFY_ON 1
+#define TRACING_ON 1
+#elif NO_ASSERTS
+#define DEBUG_ON 0
+#define VERIFY_ON 0
+#define TRACING_ON 0
+#else
+#define DEBUG_ON 0
+#define VERIFY_ON 0
+#define TRACING_ON 1 // use --trace X to enable
+#endif
+
+#define LOGGING_ON 1
+
+/*@}*/
+
#define DOCUMENT_MODEL 0
#define REDUCE_TO_INTEGER 0