Files
CMake/Tests/RunCMake/BundleUtilities/ExecutableScripts.cmake
T.J. Corona 45ed314bff BundleUtilities: do not run install_name_tool on scripts
Use the same approach as commit 08be74bfd7 (GetPrerequisites: Fix
handling of executable scripts, 2018-12-16, v3.14.0-rc1~206^2).
2020-07-28 10:35:51 -04:00

19 lines
635 B
CMake

include(BundleUtilities)
set(BU_CHMOD_BUNDLE_ITEMS ON)
function(check_script script)
fixup_bundle_item(${script} ${script} "" "")
endfunction()
# Should not throw any errors
# Shell script
set(script_sh_EMBEDDED_ITEM ${CMAKE_CURRENT_LIST_DIR}/test.app/script.sh)
check_script(${CMAKE_CURRENT_LIST_DIR}/test.app/script.sh)
# Batch script
set(script_bat_EMBEDDED_ITEM ${CMAKE_CURRENT_LIST_DIR}/test.app/script.bat)
check_script(${CMAKE_CURRENT_LIST_DIR}/test.app/script.bat)
# Shell script without extension
set(script_EMBEDDED_ITEM ${CMAKE_CURRENT_LIST_DIR}/test.app/script)
check_script(${CMAKE_CURRENT_LIST_DIR}/test.app/script)