-
Notifications
You must be signed in to change notification settings - Fork 245
/
buildinfo.cmake
210 lines (166 loc) · 5.93 KB
/
buildinfo.cmake
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# Copyright (c) 2018, 2024, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0, as
# published by the Free Software Foundation.
#
# This program is designed to work with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms, as
# designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have either included with
# the program or referenced in the documentation.
#
# Without limiting anything contained in the foregoing, this file,
# which is part of Connector/C++, is also subject to the
# Universal FOSS Exception, version 1.0, a copy of which can be found at
# https://oss.oracle.com/licenses/universal-foss-exception.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##########################################################################
include(version.cmake)
function(generate_cmake_config)
foreach(suffix "-config" "-config-version")
configure_file(
mysql-concpp${suffix}.cmake.in
"${CMAKE_BINARY_DIR}/mysql-concpp${suffix}.cmake"
@ONLY
)
install(
FILES
"${CMAKE_BINARY_DIR}/mysql-concpp${suffix}.cmake"
DESTINATION .
COMPONENT Readme
)
endforeach()
endfunction(generate_cmake_config)
FUNCTION(GENERATE_INFO_BIN)
IF(DEFINED ENV{PRODUCT_ID} AND "$ENV{PRODUCT_ID}" MATCHES "source-dist")
MESSAGE("Generating INFO_BIN is skipped for the source package")
RETURN()
ENDIF()
MESSAGE("Generating INFO_BIN")
string(TIMESTAMP INFO_DATE "%Y-%m-%d")
IF (CMAKE_BUILD_TYPE)
SET(INFO_BUILD_TYPE "build-type : ${CMAKE_BUILD_TYPE}\n")
ENDIF()
IF(OPENSSL_VERSION_GLOBAL)
SET(INFO_SSL "ssl-library : OpenSSL ${OPENSSL_VERSION_GLOBAL}\n")
ENDIF()
IF(CMAKE_OSX_DEPLOYMENT_TARGET)
SET(INFO_MACOS_TARGET "macos-target : ${CMAKE_OSX_DEPLOYMENT_TARGET}\n")
ENDIF()
IF(APPLE)
execute_process(
COMMAND sw_vers -productVersion
ERROR_QUIET
OUTPUT_VARIABLE _prod_version
RESULT_VARIABLE _result_code1
OUTPUT_STRIP_TRAILING_WHITESPACE
)
IF(_prod_version)
SET(INFO_MACOS_VERSION "macos-version : ${_prod_version}\n")
ENDIF()
execute_process(
COMMAND sw_vers -buildVersion
ERROR_QUIET
OUTPUT_VARIABLE _build_version
RESULT_VARIABLE _result_code2
OUTPUT_STRIP_TRAILING_WHITESPACE
)
IF(_build_version)
SET(INFO_MACOS_BUILD "macos-build : ${_build_version}\n")
ENDIF()
ENDIF()
IF(WITH_JDBC)
IF(Boost_VERSION)
SET(INFO_BOOST "boost-version : ${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}\n")
ENDIF()
SET(INFO_MACOS_BUILD "mysql-version : ${MYSQL_VERSION}\n")
ENDIF()
CONFIGURE_FILE(INFO_BIN.in "${CMAKE_BINARY_DIR}/INFO_BIN")
install(
FILES "${CMAKE_BINARY_DIR}/INFO_BIN"
DESTINATION ${INSTALL_DOC_DIR}
COMPONENT Readme
)
ENDFUNCTION()
FUNCTION(GENERATE_INFO_SRC)
MESSAGE("Generating INFO_SRC")
IF (NOT EXISTS INFO_SRC)
SET(INFO_VERSION "${CONCPP_VERSION}")
find_program(GIT_FOUND NAMES git)
IF(GIT_FOUND AND IS_DIRECTORY "${PROJECT_SOURCE_DIR}/.git")
execute_process(
COMMAND git symbolic-ref --short HEAD
ERROR_QUIET
OUTPUT_VARIABLE GIT_BRANCH_NAME
RESULT_VARIABLE _result_code3
OUTPUT_STRIP_TRAILING_WHITESPACE
)
IF (GIT_BRANCH_NAME)
execute_process(
COMMAND git log -1 --format=%cd --date=short
ERROR_QUIET
OUTPUT_VARIABLE GIT_DATE
RESULT_VARIABLE _result_code4
OUTPUT_STRIP_TRAILING_WHITESPACE
)
IF(GIT_DATE)
SET(INFO_DATE "date : ${GIT_DATE}\n")
ENDIF()
IF(GIT_BRANCH_NAME)
SET(INFO_BRANCH "branch : ${GIT_BRANCH_NAME}\n")
ENDIF()
execute_process(
COMMAND git rev-parse HEAD
ERROR_QUIET
OUTPUT_VARIABLE GIT_COMMIT
RESULT_VARIABLE _result_code5
OUTPUT_STRIP_TRAILING_WHITESPACE
)
IF(GIT_COMMIT)
SET(INFO_COMMIT "commit : ${GIT_COMMIT}\n")
ENDIF()
execute_process(
COMMAND git rev-parse --short HEAD
ERROR_QUIET
OUTPUT_VARIABLE GIT_SHORT
RESULT_VARIABLE _result_code6
OUTPUT_STRIP_TRAILING_WHITESPACE
)
IF(GIT_SHORT)
SET(INFO_SHORT "short : ${GIT_SHORT}\n")
ENDIF()
ENDIF()
ELSE()
# git local repository does not exist, but the env variables might be set
IF(DEFINED ENV{PUSH_REVISION})
SET(INFO_COMMIT "commit : $ENV{PUSH_REVISION}\n")
STRING(SUBSTRING $ENV{PUSH_REVISION} 0 8 GIT_SHORT)
SET(INFO_SHORT "short : ${GIT_SHORT}\n")
ENDIF()
IF(DEFINED ENV{BRANCH_SOURCE})
STRING(REGEX MATCH " [^ ]+" GIT_BRANCH_NAME $ENV{BRANCH_SOURCE})
SET(INFO_BRANCH "branch : ${GIT_BRANCH_NAME}\n")
ENDIF()
ENDIF()
CONFIGURE_FILE(INFO_SRC.in "${CMAKE_BINARY_DIR}/INFO_SRC")
ENDIF()
install(
FILES "${CMAKE_BINARY_DIR}/INFO_SRC"
DESTINATION ${INSTALL_DOC_DIR}
COMPONENT Readme
)
ENDFUNCTION()
GENERATE_INFO_SRC()
GENERATE_INFO_BIN()
generate_cmake_config()