diff options
author | Chris Robinson <[email protected]> | 2010-07-16 00:18:21 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-07-16 00:18:21 -0700 |
commit | c85d53cfbe119cb9f8329188b24c1759402e53dc (patch) | |
tree | f5e52e970d6c0ba51247f4f806e8636f238564bd | |
parent | 26127cd2f2bdc37d25bd35fa70626dd75916df85 (diff) |
Remove the commit count from the version number
As it's only updated for releases, it's kinda useless
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ebfa796a..f8a2a39b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,8 +52,7 @@ ENDIF() SET(LIB_MAJOR_VERSION "1") SET(LIB_MINOR_VERSION "12") -SET(LIB_BUILD_VERSION "854") -SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_BUILD_VERSION}") +SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}") CHECK_TYPE_SIZE("long" SIZEOF_LONG) |