diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | cmake/cpack.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 70bf512..9afa2b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,7 +42,7 @@ IF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ) STRING(STRIP ${ACCEL_PPP_VERSION} ACCEL_PPP_VERSION) ELSE (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) - SET (ACCEL_PPP_VERSION 1.12.0) + SET (ACCEL_PPP_VERSION 1.13.0) ENDIF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) # we must include cpack.cmake after generating the ACCEL_PPP_VERSION variable diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake index 14e0624..3dfc275 100644 --- a/cmake/cpack.cmake +++ b/cmake/cpack.cmake @@ -6,7 +6,7 @@ string(REPLACE "." ";" VERSION_LIST ${ACCEL_PPP_VERSION}) # If not assign dummy variables list(LENGTH VERSION_LIST VERSION_LIST_LENGTH) if(NOT VERSION_LIST_LENGTH EQUAL 3) - set(VERSION_LIST 1;12;0) + set(VERSION_LIST 1;13;0) endif() list(GET VERSION_LIST 0 CPACK_PACKAGE_VERSION_MAJOR) list(GET VERSION_LIST 1 CPACK_PACKAGE_VERSION_MINOR) |