diff options
author | Stefan Andritoiu <[email protected]> | 2016-01-25 18:33:52 +0200 |
---|---|---|
committer | Stefan Andritoiu <[email protected]> | 2016-01-25 18:53:40 +0200 |
commit | 92c40964426b9f34eb297123c221762df34c1add (patch) | |
tree | 2dfaeb5e4b51c9a7cf8b91743fa6714910911226 /CMakeLists.txt | |
parent | 942ad559010c465f39097ffcdd25727cdf317d5b (diff) |
cmake: Fixed version name
Signed-off-by: Stefan Andritoiu <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cf87c900..b0e74018 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,6 +21,7 @@ set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_ # Make a version file containing the current version from git. include (GetGitRevisionDescription) git_describe (VERSION "--tags") + if ("x_${VERSION}" STREQUAL "x_GIT-NOTFOUND" OR "x_${VERSION}" STREQUAL "x_HEAD-HASH-NOTFOUND" OR "x_${VERSION}" STREQUAL "x_-128-NOTFOUND") message (WARNING " - Install git to compile a production libtinyb!") set (VERSION "v0.1.0-dirty") @@ -47,7 +48,7 @@ configure_file (${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/version.c.in set (tinyb_VERSION_MAJOR ${VERSION_MAJOR}) set (tinyb_VERSION_MINOR ${VERSION_MINOR}) set (tinyb_VERSION_PATCH ${VERSION_PATCH}) -set (tinyb_VERSION_STRING ${mraa_VERSION_MAJOR}.${mraa_VERSION_MINOR}.${mraa_VERSION_PATCH}) +set (tinyb_VERSION_STRING "${tinyb_VERSION_MAJOR}.${tinyb_VERSION_MINOR}.${tinyb_VERSION_PATCH}") set (CMAKE_SWIG_FLAGS "") |