-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsave_archive_location.cmake.in
39 lines (34 loc) · 1.44 KB
/
save_archive_location.cmake.in
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
# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# 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 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
# Save TARGET_NAME and TARGET_LOC
# -DTARGET_NAME=${TARGET}
# -DTARGET_LOC=$<TARGET_FILE:${TARGET}>
# -DCFG_INTDIR=${CMAKE_CFG_INTDIR}
#
# Creates a file lib_location_${TARGET_NAME} which contains
# the target location of TARGET_NAME (a static library)
SET(CMAKE_BINARY_DIR "@CMAKE_BINARY_DIR@")
SET(MYSQL_CMAKE_SCRIPT_DIR "@MYSQL_CMAKE_SCRIPT_DIR@")
MACRO(CONFIGURE_FILE_CONTENT content file)
SET(CMAKE_CONFIGURABLE_FILE_CONTENT
"${content}")
CONFIGURE_FILE(
${MYSQL_CMAKE_SCRIPT_DIR}/configurable_file_content.in
${file}
@ONLY)
ENDMACRO()
SET(FILENAME "${CMAKE_BINARY_DIR}/archive_output_directory")
SET(FILENAME "${FILENAME}/${CFG_INTDIR}/lib_location_${TARGET_NAME}")
CONFIGURE_FILE_CONTENT("${TARGET_LOC}" ${FILENAME})