summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-06-24 15:17:46 -0700
committerGitHub <noreply@github.com>2020-06-24 17:17:46 -0500
commite8482734bb0cd0af285464a4c50b631234ea36ee (patch)
treef6d3fe2b2af3485345db3170b8e409be736809ef /CMakeLists.txt
parentbe607a9d420f79fa3e6a1f2c9b8c0e1b49cd34ee (diff)
Fix CVC4_EXTRAVERSION variable (#4653)
When I created the PR for 733083c, it did not contain the change from "" -> "-prerelease" because at the time master still had CVC4_EXTRAVERSION set to "-prerelease". This commit fixes CVC4_EXTRAVERSION.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a44805482..1b6027b46 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,7 +10,7 @@ set(CVC4_MINOR 9) # Minor component of the version of CVC4.
set(CVC4_RELEASE 0) # Release component of the version of CVC4.
# Extraversion component of the version of CVC4.
-set(CVC4_EXTRAVERSION "")
+set(CVC4_EXTRAVERSION "-prerelease")
# Shared library versioning. Increment SOVERSION for every new CVC4 release.
set(CVC4_SOVERSION 7)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback