blob: 0f26944c862f424735509764a8f959c388a7c1a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (C) 2020 Manuel Bentele <development@manuel-bentele.de>
#
macro(gen_project_version VERSION_INPUT_FILE VERSION_INPUT_FILE_TEMPLATE VERSION_OUTPUT_FILE GIT_EXECUTABLE REPOSITORY_DIR)
get_filename_component(VERSION_OUTPUT_FILENAME ${VERSION_OUTPUT_FILE} NAME)
# command that will trigger a rebuild of version.h every time
add_custom_command(OUTPUT regenerate-version-file
COMMAND ${CMAKE_COMMAND} -E sleep 0
COMMENT "Trigger generating ${VERSION_OUTPUT_FILENAME}")
# call the GenerateVersion.cmake file to generate the version.c file
add_custom_command(OUTPUT ${VERSION_OUTPUT_FILE}
COMMAND ${CMAKE_COMMAND} -D VERSION_MODULE_PATH=${PROJECT_MODULES_DIR}
-D VERSION_INPUT_FILE=${VERSION_INPUT_FILE}
-D VERSION_INPUT_FILE_TEMPLATE=${VERSION_INPUT_FILE_TEMPLATE}
-D VERSION_OUTPUT_FILE=${VERSION_OUTPUT_FILE}
-D VERSION_BUILD_TYPE=${CMAKE_BUILD_TYPE}
-D GIT_EXECUTABLE=${GIT_EXECUTABLE}
-D REPOSITORY_DIR=${REPOSITORY_DIR}
-P ${PROJECT_MODULES_DIR}/GenerateVersion.cmake
COMMENT "Generating ${VERSION_OUTPUT_FILENAME}"
DEPENDS regenerate-version-file)
add_custom_target(dnbd3-generate-version DEPENDS ${VERSION_OUTPUT_FILE})
# create target to expose project version
add_library(dnbd3-version INTERFACE)
target_include_directories(dnbd3-version INTERFACE ${PROJECT_INCLUDE_GEN_DIR})
add_dependencies(dnbd3-version dnbd3-generate-version)
endmacro(gen_project_version VERSION_INPUT_FILE VERSION_INPUT_FILE_TEMPLATE VERSION_OUTPUT_FILE)
# macro to get Git version information
macro(get_repository_version REPOSITORY_VERSION REPOSITORY_VERSION_SHORT REPOSITORY_BRANCH VERSION_HEADER_FILE VERSION_BUILD_TYPE GIT_EXECUTABLE REPOSITORY_DIR)
# set empty Git version information
set(GIT_VERSION "")
# set empty Git branch information
set(GIT_BRANCH "")
# check if generated version header from source package is available
if(EXISTS ${VERSION_HEADER_FILE})
# get version information from the generated version header of the source package
file(READ ${VERSION_HEADER_FILE} GIT_VERSION_VERBOSE)
string(REGEX MATCH "DNBD3_VERSION[ \t]+\"([0-9][A-Za-z0-9.+~-]*)\"" GIT_VERSION ${GIT_VERSION_VERBOSE})
set(GIT_VERSION "${CMAKE_MATCH_1}")
# get branch information from the generated version header of the source package
file(READ ${VERSION_HEADER_FILE} GIT_BRANCH_VERBOSE)
string(REGEX MATCH "DNBD3_BRANCH[ \t]+\"([0-9][A-Za-z0-9.+~-]*)\"" GIT_BRANCH ${GIT_BRANCH_VERBOSE})
set(GIT_BRANCH "${CMAKE_MATCH_1}")
else(EXISTS ${VERSION_HEADER_FILE})
# get detailed Git version information from Git repository
execute_process(COMMAND ${GIT_EXECUTABLE} describe --tags HEAD
WORKING_DIRECTORY ${REPOSITORY_DIR}
OUTPUT_VARIABLE GIT_VERSION_VERBOSE
RESULT_VARIABLE GIT_RETURN_CODE
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
# parse version information from repository if Git command succeeds
if(GIT_RETURN_CODE EQUAL 0)
# remove the first letter of the version to satisfy packaging rules
string(REGEX MATCH "([0-9]+:)?[0-9][A-Za-z0-9.+~-]*" GIT_VERSION ${GIT_VERSION_VERBOSE})
endif(GIT_RETURN_CODE EQUAL 0)
# overwrite version from Git if version is unknown
if(GIT_VERSION STREQUAL "")
# overwrite version information with unknown version 'v0.0'
set(GIT_VERSION "0.0")
# print a message in Release build configuration to warn about the unknown version
if(${VERSION_BUILD_TYPE} MATCHES "Release")
message(WARNING "The version information from Git tags in this dnbd3 Git repository is missing! Please fetch all Git tags of this repository for a ${VERSION_BUILD_TYPE} build!")
endif(${VERSION_BUILD_TYPE} MATCHES "Release")
endif(GIT_VERSION STREQUAL "")
set(${REPOSITORY_VERSION_SHORT} ${GIT_VERSION})
# get current branch of Git repository
execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD
WORKING_DIRECTORY ${REPOSITORY_DIR}
OUTPUT_VARIABLE GIT_BRANCH_VERBOSE
RESULT_VARIABLE GIT_RETURN_CODE
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
# check output to get branch information
if(GIT_RETURN_CODE EQUAL 0)
set(GIT_BRANCH ${GIT_BRANCH_VERBOSE})
endif(GIT_RETURN_CODE EQUAL 0)
if(GIT_BRANCH STREQUAL "")
# overwrite branch information with 'unknown' branch
set(GIT_BRANCH "unknown")
# print a message in Release build configuration to warn about the unknown branch
if(${VERSION_BUILD_TYPE} MATCHES "Release")
message(WARNING "The current branch in the dnbd3 Git repository is unknown! Please check the branches of this repository for a ${VERSION_BUILD_TYPE} build!")
endif(${VERSION_BUILD_TYPE} MATCHES "Release")
endif(GIT_BRANCH STREQUAL "")
# get status of Git repository
execute_process(COMMAND ${GIT_EXECUTABLE} status --porcelain
WORKING_DIRECTORY ${REPOSITORY_DIR}
OUTPUT_VARIABLE GIT_STATUS
RESULT_VARIABLE GIT_RETURN_CODE
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
# check if Git repository is dirty
if(GIT_RETURN_CODE EQUAL 0 AND NOT GIT_STATUS STREQUAL "")
# the Git repository is dirty, thus extend the version information
set(GIT_VERSION "${GIT_VERSION}+MOD")
# print a message in Release build configuration to warn about the dirty repository
if(${VERSION_BUILD_TYPE} MATCHES "Release")
message(WARNING "This dnbd3 Git repository is dirty! Please commit or revert all changes for a ${VERSION_BUILD_TYPE} build!")
endif(${VERSION_BUILD_TYPE} MATCHES "Release")
endif(GIT_RETURN_CODE EQUAL 0 AND NOT GIT_STATUS STREQUAL "")
endif(EXISTS ${VERSION_HEADER_FILE})
# return version and branch to caller
set(${REPOSITORY_VERSION} ${GIT_VERSION})
set(${REPOSITORY_BRANCH} ${GIT_BRANCH})
endmacro(get_repository_version)
|