From: Thomas Jarosch Date: Wed, 20 Apr 2016 18:31:31 +0000 (+0200) Subject: Fix build error on rc1 string in MINOR_VERSION X-Git-Tag: v1.3rc1~1 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=32fe45e285754d03b3c783d2ffb86acb14d23678 Fix build error on rc1 string in MINOR_VERSION --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 9acdad1..4c2e4fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,9 @@ # Project project(libftdi1) set(MAJOR_VERSION 1) -set(MINOR_VERSION 3rc1) +set(MINOR_VERSION 3) set(PACKAGE libftdi1) -set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}) +set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}rc1) set(VERSION ${VERSION_STRING}) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)