summaryrefslogtreecommitdiff
path: root/cmake/ConfigTesting.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/ConfigTesting.cmake')
-rw-r--r--cmake/ConfigTesting.cmake11
1 files changed, 10 insertions, 1 deletions
diff --git a/cmake/ConfigTesting.cmake b/cmake/ConfigTesting.cmake
index 9627bcd52..3c995e421 100644
--- a/cmake/ConfigTesting.cmake
+++ b/cmake/ConfigTesting.cmake
@@ -15,7 +15,16 @@ cvc4_set_option(ENABLE_PROOFS ON)
# enable_tracing=yes
cvc4_set_option(ENABLE_TRACING ON)
# enable_dumping=yes
-cvc4_set_option(ENABLE_DUMPING ON)
+if(ENABLE_PORTFOLIO)
+ if(ENABLE_DUMPING)
+ message(FATAL_ERROR "Dumping not supported with a portfolio build.")
+ else()
+ message(WARNING
+ "Disabling dumping support, not supported with a portfolio build.")
+ endif()
+else()
+ cvc4_set_option(ENABLE_DUMPING ON)
+endif()
# 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