summaryrefslogtreecommitdiff
path: root/cmake/ConfigDebug.cmake
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-09-28 11:42:49 -0500
committerGitHub <noreply@github.com>2018-09-28 11:42:49 -0500
commit676fbb54488a995818773f05a6ce860916ee6667 (patch)
tree4a0d335b8438c593306da49cd930e95330ddc625 /cmake/ConfigDebug.cmake
parent37f8a0a52fac6933af7bace33d8da648901a7bf9 (diff)
parent8c9e1ce5939737bac95cf16f59e6fc7fc856940b (diff)
Merge branch 'master' into emptyEqemptyEq
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