summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-04-21 10:21:34 -0700
committerGitHub <noreply@github.com>2021-04-21 10:21:34 -0700
commitae5ee4b07dc3d3c792e7fe7f382ff490dd28aca4 (patch)
treea7c2ab8013f46dbea75fcd6e7da3fb83e2012b2f /src/context
parent86aa9bc35ba9dc9a57913a2ffc71619c7657cc35 (diff)
Goodbye CVC4, hello cvc5! (#6371)
This commits changes the build system to cvc5 and removes the remaining occurrences of CVC4. It further cleans up outdated/unused scripts in contrib/.
Diffstat (limited to 'src/context')
-rw-r--r--src/context/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/context/CMakeLists.txt b/src/context/CMakeLists.txt
index fb1d25111..73166462c 100644
--- a/src/context/CMakeLists.txt
+++ b/src/context/CMakeLists.txt
@@ -34,8 +34,8 @@ set(LIBCONTEXT_SOURCES
context_mm.h
)
-add_library(cvc4context OBJECT ${LIBCONTEXT_SOURCES})
+add_library(cvc5context OBJECT ${LIBCONTEXT_SOURCES})
if(ENABLE_SHARED)
- set_target_properties(cvc4context PROPERTIES POSITION_INDEPENDENT_CODE ON)
+ set_target_properties(cvc5context PROPERTIES POSITION_INDEPENDENT_CODE ON)
endif()
-target_compile_definitions(cvc4context PRIVATE -D__BUILDING_CVC4LIB)
+target_compile_definitions(cvc5context PRIVATE -D__BUILDING_CVC5LIB)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback