diff options
author | Clayton Smith <argilo@gmail.com> | 2020-01-11 09:24:40 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-12 18:38:01 -0800 |
commit | 96a5e82123ddc8a3ea6ced7bb903cafacd5113fb (patch) | |
tree | 841c5751d296a257e433683ca4bb86d415c44dae /gr-utils/python | |
parent | b2c845c70249a64a177bb592bfd7c61f1052d2ec (diff) |
modtool: fix alignment of version info
Diffstat (limited to 'gr-utils/python')
-rw-r--r-- | gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt b/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt index 49a24a0001..87c4f4d59a 100644 --- a/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt +++ b/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt @@ -43,8 +43,8 @@ list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules) # Set the version information here set(VERSION_MAJOR 1) -set(VERSION_API 0) -set(VERSION_ABI 0) +set(VERSION_API 0) +set(VERSION_ABI 0) set(VERSION_PATCH git) cmake_policy(SET CMP0011 NEW) |