summaryrefslogtreecommitdiff
path: root/cmake/ConfigDebug.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/ConfigDebug.cmake')
-rw-r--r--cmake/ConfigDebug.cmake5
1 files changed, 2 insertions, 3 deletions
diff --git a/cmake/ConfigDebug.cmake b/cmake/ConfigDebug.cmake
index 9c9f5ec10..a4331bfce 100644
--- a/cmake/ConfigDebug.cmake
+++ b/cmake/ConfigDebug.cmake
@@ -19,9 +19,8 @@ cvc4_set_option(ENABLE_PROOFS ON)
cvc4_set_option(ENABLE_TRACING ON)
# enable_dumping=yes
if(ENABLE_PORTFOLIO)
- if(ENABLE_DUMPING)
- message(FATAL_ERROR "Dumping not supported with a portfolio build.")
- else()
+ # 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()
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback