Skip to content
Snippets Groups Projects
Commit 8eb07601 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Task #9533: Hijacking this ticket for committing a change to...

Task #9533: Hijacking this ticket for committing a change to LofarMacros.cmake: added lofar_add_data_files() to install one or more data files into <prefix>/share.
parent 4b71fcfd
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
# lofar_add_sbin_program(name)
# lofar_add_sbin_scripts([name1 [name2 ..]])
# lofar_add_sysconf_files([name1 [name2 ..]])
# lofar_add_data_files([name1 [name2 ..]])
# lofar_add_test(name)
# lofar_create_target_symlink(target symlink)
# lofar_join_arguments(var)
......@@ -196,6 +197,26 @@ if(NOT DEFINED LOFAR_MACROS_INCLUDED)
endmacro(lofar_add_sysconf_files)
# --------------------------------------------------------------------------
# lofar_add_data_files([name1 [name2 ..]])
#
# Add system data files (architecture-independent data) that need to be
# installed into the <prefix>/share directory. Also create a symbolic link
# in <build-dir>/share to each of these files. The file names may contain
# a relative(!) path.
# --------------------------------------------------------------------------
macro(lofar_add_data_files)
foreach(_name ${ARGN})
get_filename_component(_path ${_name} PATH)
get_filename_component(_abs_name ${_name} ABSOLUTE)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/share/${_path})
execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink
${_abs_name} ${CMAKE_BINARY_DIR}/share/${_name})
install(FILES ${_name} DESTINATION share/${_path})
endforeach(_name ${ARGN})
endmacro(lofar_add_data_files)
# --------------------------------------------------------------------------
# lofar_add_test(name [source ...] [DEPENDS depend ...])
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment