From: Andres Noetzli Date: Wed, 24 Jun 2020 22:17:46 +0000 (-0700) Subject: Fix CVC4_EXTRAVERSION variable (#4653) X-Git-Tag: cvc5-1.0.0~3176 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e8482734bb0cd0af285464a4c50b631234ea36ee;p=cvc5.git 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. --- 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)