summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/ConfigDebug.cmake10
-rw-r--r--cmake/ConfigProduction.cmake10
-rw-r--r--cmake/ConfigTesting.cmake10
3 files changed, 3 insertions, 27 deletions
diff --git a/cmake/ConfigDebug.cmake b/cmake/ConfigDebug.cmake
index a4331bfce..9f58d3548 100644
--- a/cmake/ConfigDebug.cmake
+++ b/cmake/ConfigDebug.cmake
@@ -18,15 +18,7 @@ cvc4_set_option(ENABLE_PROOFS ON)
# enable_tracing=yes
cvc4_set_option(ENABLE_TRACING ON)
# enable_dumping=yes
-if(ENABLE_PORTFOLIO)
- # Only print warning if dumping was not explicitely disabled by the user.
- if(${ENABLE_DUMPING} STREQUAL "IGNORE")
- message(WARNING
- "Disabling dumping support, not supported with a portfolio build.")
- endif()
-else()
- cvc4_set_option(ENABLE_DUMPING ON)
-endif()
+cvc4_set_option(ENABLE_DUMPING ON)
# enable_muzzle=no
cvc4_set_option(ENABLE_MUZZLE OFF)
# enable_valgrind=optional
diff --git a/cmake/ConfigProduction.cmake b/cmake/ConfigProduction.cmake
index 99f2a7b93..1b30dc1aa 100644
--- a/cmake/ConfigProduction.cmake
+++ b/cmake/ConfigProduction.cmake
@@ -15,15 +15,7 @@ cvc4_set_option(ENABLE_PROOFS ON)
# enable_tracing=no
cvc4_set_option(ENABLE_TRACING OFF)
# enable_dumping=yes
-if(ENABLE_PORTFOLIO)
- # Only print warning if dumping was not explicitely disabled by the user.
- if(${ENABLE_DUMPING} STREQUAL "IGNORE")
- message(WARNING
- "Disabling dumping support, not supported with a portfolio build.")
- endif()
-else()
- cvc4_set_option(ENABLE_DUMPING ON)
-endif()
+cvc4_set_option(ENABLE_DUMPING ON)
# enable_muzzle=no
cvc4_set_option(ENABLE_MUZZLE OFF)
# enable_valgrind=no
diff --git a/cmake/ConfigTesting.cmake b/cmake/ConfigTesting.cmake
index 7feaf5129..9627bcd52 100644
--- a/cmake/ConfigTesting.cmake
+++ b/cmake/ConfigTesting.cmake
@@ -15,15 +15,7 @@ cvc4_set_option(ENABLE_PROOFS ON)
# enable_tracing=yes
cvc4_set_option(ENABLE_TRACING ON)
# enable_dumping=yes
-if(ENABLE_PORTFOLIO)
- # Only print warning if dumping was not explicitely disabled by the user.
- if(${ENABLE_DUMPING} STREQUAL "IGNORE")
- message(WARNING
- "Disabling dumping support, not supported with a portfolio build.")
- endif()
-else()
- cvc4_set_option(ENABLE_DUMPING ON)
-endif()
+cvc4_set_option(ENABLE_DUMPING ON)
# enable_muzzle=no
cvc4_set_option(ENABLE_MUZZLE OFF)
# enable_valgrind=no
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback