From 4885c4eba4b649f7965c6af0844202e41ff2c7f1 Mon Sep 17 00:00:00 2001 From: Marcel Loose <loose@astron.nl> Date: Wed, 14 Oct 2015 13:24:22 +0000 Subject: [PATCH] Task #8629: Added macros lofar_add_bin_scripts(), and lofar_add_sbin_scripts(), which can be used to add executable scripts to the build/install. --- CMake/LofarMacros.cmake | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/CMake/LofarMacros.cmake b/CMake/LofarMacros.cmake index ca49c8c875d..0a4a1a3ca74 100644 --- a/CMake/LofarMacros.cmake +++ b/CMake/LofarMacros.cmake @@ -2,9 +2,11 @@ # # Defines the following macros: # lofar_add_bin_program(name) +# lofar_add_bin_scripts([name1 [name2 ..]]) # lofar_add_executable(name) # lofar_add_library(name) # lofar_add_sbin_program(name) +# lofar_add_sbin_scripts([name1 [name2 ..]]) # lofar_add_test(name) # lofar_join_arguments(var) # lofar_search_path(path package) @@ -48,6 +50,22 @@ if(NOT DEFINED LOFAR_MACROS_INCLUDED) endmacro(lofar_add_bin_program) + # -------------------------------------------------------------------------- + # lofar_add_bin_scripts([name1 [name2 ..]]) + # + # Add scripts that need to be installed into the <prefix>/bin directory. + # Also create a symbolic link in <build-dir>/bin to each of these scripts. + # -------------------------------------------------------------------------- + macro(lofar_add_bin_scripts) + foreach(_name ${ARGN}) + get_filename_component(_abs_name ${_name} ABSOLUTE) + execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink + ${_abs_name} ${CMAKE_BINARY_DIR}/bin/${_name}) + install(PROGRAMS ${_name} DESTINATION bin) + endforeach(_name ${ARGN}) + endmacro(lofar_add_bin_scripts) + + # -------------------------------------------------------------------------- # lofar_add_executable(name) # @@ -128,6 +146,22 @@ if(NOT DEFINED LOFAR_MACROS_INCLUDED) endmacro(lofar_add_sbin_program) + # -------------------------------------------------------------------------- + # lofar_add_sbin_scripts([name1 [name2 ..]]) + # + # Add scripts that need to be installed into the <prefix>/sbin directory. + # Also create a symbolic link in <build-dir>/sbin to each of these scripts. + # -------------------------------------------------------------------------- + macro(lofar_add_sbin_scripts) + foreach(_name ${ARGN}) + get_filename_component(_abs_name ${_name} ABSOLUTE) + execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink + ${_abs_name} ${CMAKE_BINARY_DIR}/sbin/${_name}) + install(PROGRAMS ${_name} DESTINATION sbin) + endforeach(_name ${ARGN}) + endmacro(lofar_add_sbin_scripts) + + # -------------------------------------------------------------------------- # lofar_add_test(name [source ...] [DEPENDS depend ...]) # -- GitLab