forked from Eyescale/CMake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommonInstall.cmake
47 lines (41 loc) · 1.54 KB
/
CommonInstall.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
# Copyright (c) 2015 [email protected]
# Uses a compatible subset of the install() syntax, but can install
# files while preserving their relative directory, and additionally
# installing them into the PROJECT_BINARY_DIR or CMAKE_BINARY_DIR for
# compatibility with superprojects. Files with an absolute filename
# are installed directly into the DESTINATION, that is, their
# directory is not preserved. If RELATIVE is set, directories are
# ignored on all files.
#
# Usage: common_install(FILES <files> [COMPONENT <name>] [DESTINATION <prefix>]
# [RELATIVE] [CMAKE_BINARY_DIR])
include(CMakeParseArguments)
function(COMMON_INSTALL)
set(OPT_NAMES RELATIVE CMAKE_BINARY_DIR)
set(ARG_NAMES COMPONENT DESTINATION)
set(ARGS_NAMES FILES)
cmake_parse_arguments(THIS "${OPT_NAMES}" "${ARG_NAMES}" "${ARGS_NAMES}"
${ARGN})
if(THIS_COMPONENT)
set(THIS_COMPONENT COMPONENT ${THIS_COMPONENT})
endif()
if(NOT THIS_DESTINATION)
set(THIS_DESTINATION ".")
endif()
set(THIS_BINARY_DIR "${PROJECT_BINARY_DIR}")
if(THIS_CMAKE_BINARY_DIR)
set(THIS_BINARY_DIR "${CMAKE_BINARY_DIR}")
endif()
foreach(FILE ${THIS_FILES})
if(IS_ABSOLUTE ${FILE} OR THIS_RELATIVE)
set(DIR)
else()
string(REGEX MATCH "(.*)[/\\]" DIR ${FILE})
endif()
get_filename_component(BASENAME ${FILE} NAME)
install(FILES ${FILE} DESTINATION ${THIS_DESTINATION}/${DIR}
${THIS_COMPONENT})
configure_file(${FILE}
${THIS_BINARY_DIR}/${THIS_DESTINATION}/${DIR}/${BASENAME} COPYONLY)
endforeach()
endfunction()