2016-01-12 21:04:11 +00:00
|
|
|
function(copy_and_install sourceGlob relativeTargetDirectory)
|
2015-12-21 07:23:01 +00:00
|
|
|
# Set `sourcePaths`
|
|
|
|
file(GLOB sourcePaths "${sourceGlob}")
|
|
|
|
|
|
|
|
foreach(sourcePath ${sourcePaths})
|
2016-01-19 21:05:06 +00:00
|
|
|
if(NOT IS_DIRECTORY ${sourcePath})
|
|
|
|
# Set `fileName`
|
|
|
|
get_filename_component(fileName "${sourcePath}" NAME)
|
2016-01-12 21:04:11 +00:00
|
|
|
|
2016-01-19 21:05:06 +00:00
|
|
|
# Copy file during build
|
|
|
|
add_custom_command(TARGET rhubarb POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy "${sourcePath}" "$<TARGET_FILE_DIR:rhubarb>/${relativeTargetDirectory}/${fileName}"
|
|
|
|
COMMENT "Creating '${relativeTargetDirectory}/${fileName}'"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Install file
|
|
|
|
install(
|
|
|
|
FILES "${sourcePath}"
|
|
|
|
DESTINATION "${relativeTargetDirectory}"
|
|
|
|
)
|
|
|
|
endif()
|
2015-12-21 07:23:01 +00:00
|
|
|
endforeach()
|
|
|
|
endfunction()
|