You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
570 B
30 lines
570 B
# This CMakeLists.txt is part of the superproject (add_subdirectory).
|
|
|
|
# Below file transfers are executed at configuration time!
|
|
|
|
file(
|
|
COPY
|
|
"file_copy.txt"
|
|
DESTINATION
|
|
"${CMAKE_INSTALL_PREFIX}"
|
|
)
|
|
|
|
file(COPY_FILE
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/file_copy_file.txt"
|
|
"${CMAKE_INSTALL_PREFIX}/file_copy_file.txt"
|
|
)
|
|
|
|
file(
|
|
INSTALL
|
|
"file_install.txt"
|
|
DESTINATION
|
|
"${CMAKE_INSTALL_PREFIX}"
|
|
)
|
|
|
|
file(
|
|
CREATE_LINK
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/file_create_link_symbolic.txt"
|
|
"${CMAKE_INSTALL_PREFIX}/file_create_link_symbolic.txt"
|
|
SYMBOLIC
|
|
)
|