diff options
author | Marcus Müller <mueller@kit.edu> | 2019-07-15 21:07:12 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-07-17 21:44:11 +0200 |
commit | 37528f7a89e70ca50651dccf43ab7b61792486ad (patch) | |
tree | 7d6731b08491ad9a5f42d9138f5c0bb9ce34c872 /gr-utils/python | |
parent | a3db203065f8ea2812cb4a560dcb8b91cdfdff14 (diff) |
Renaming the VERSION_INFO_* to VERSION_ macros consistent w/ VERSIONING
Diffstat (limited to 'gr-utils/python')
-rw-r--r-- | gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt b/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt index 3b30732755..9f9de987e8 100644 --- a/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt +++ b/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt @@ -42,10 +42,10 @@ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "") list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules) # Set the version information here -set(VERSION_INFO_MAJOR_VERSION 1) -set(VERSION_INFO_API_COMPAT 0) -set(VERSION_INFO_MINOR_VERSION 0) -set(VERSION_INFO_MAINT_VERSION git) +set(VERSION_MAJOR 1) +set(VERSION_API 0) +set(VERSION_ABI 0) +set(VERSION_PATCH git) cmake_policy(SET CMP0011 NEW) |