v1.11.0 #243
@ -10,6 +10,9 @@
|
|||||||
cmake_minimum_required(VERSION 3.13)
|
cmake_minimum_required(VERSION 3.13)
|
||||||
|
|
||||||
# set(CMAKE_VERBOSE TRUE)
|
# set(CMAKE_VERBOSE TRUE)
|
||||||
|
set(OBSW_VERSION_MAJOR_IF_GIT_FAILS 0)
|
||||||
|
set(OBSW_VERSION_MINOR_IF_GIT_FAILS 0)
|
||||||
|
set(OBSW_VERSION_REVISION_IF_GIT_FAILS 0)
|
||||||
|
|
||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
||||||
|
|
||||||
@ -44,20 +47,34 @@ include(EiveHelpers)
|
|||||||
pre_project_config()
|
pre_project_config()
|
||||||
|
|
||||||
# Version handling
|
# Version handling
|
||||||
determine_version_with_git("--exclude" "docker_*")
|
set(GIT_VER_HANDLING_OK FALSE)
|
||||||
set(GIT_INFO ${GIT_INFO} CACHE STRING "Version information retrieved with git describe")
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
|
||||||
list(GET GIT_INFO 1 OBSW_VERSION_MAJOR)
|
determine_version_with_git("--exclude" "docker_*")
|
||||||
list(GET GIT_INFO 2 OBSW_VERSION_MINOR)
|
set(GIT_INFO ${GIT_INFO} CACHE STRING "Version information retrieved with git describe")
|
||||||
list(GET GIT_INFO 3 OBSW_VERSION_REVISION)
|
if(GIT_INFO)
|
||||||
list(GET GIT_INFO 4 OBSW_VERSION_CST_GIT_SHA1)
|
set(GIT_INFO ${GIT_INFO} CACHE STRING "Version information retrieved with git describe")
|
||||||
if(NOT OBSW_VERSION_MAJOR)
|
list(GET GIT_INFO 1 OBSW_VERSION_MAJOR)
|
||||||
set(OBSW_VERSION_MAJOR 0)
|
list(GET GIT_INFO 2 OBSW_VERSION_MINOR)
|
||||||
|
list(GET GIT_INFO 3 OBSW_VERSION_REVISION)
|
||||||
|
list(GET GIT_INFO 4 OBSW_VERSION_CST_GIT_SHA1)
|
||||||
|
if(NOT OBSW_VERSION_MAJOR)
|
||||||
|
set(OBSW_VERSION_MAJOR ${OBSW_VERSION_MAJOR_IF_GIT_FAILS})
|
||||||
|
endif()
|
||||||
|
if(NOT OBSW_VERSION_MINOR)
|
||||||
|
set(FSFW_SUBVERSION ${OBSW_VERSION_MINOR_IF_GIT_FAILS})
|
||||||
|
endif()
|
||||||
|
if(NOT OBSW_VERSION_REVISION)
|
||||||
|
set(FSFW_REVISION ${OBSW_VERSION_REVISION_IF_GIT_FAILS})
|
||||||
|
endif()
|
||||||
|
set(GIT_VER_HANDLING_OK TRUE)
|
||||||
|
else()
|
||||||
|
set(GIT_VER_HANDLING_OK FALSE)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
if(NOT OBSW_VERSION_MINOR)
|
if(NOT GIT_VER_HANDLING_OK)
|
||||||
set(OBSW_VERSION_MINOR 0)
|
set(OBSW_VERSION_MAJOR ${OBSW_VERSION_MAJOR_IF_GIT_FAILS})
|
||||||
endif()
|
set(OBSW_VERSION_MINOR ${OBSW_VERSION_MINOR_IF_GIT_FAILS})
|
||||||
if(NOT OBSW_VERSION_REVISION)
|
set(OBSW_VERSION_REVISION ${OBSW_VERSION_REVISION_IF_GIT_FAILS})
|
||||||
set(OBSW_VERSION_REVISION 0)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Check whether the user has already installed Catch2 first. This has to come before
|
# Check whether the user has already installed Catch2 first. This has to come before
|
||||||
|
Loading…
Reference in New Issue
Block a user