mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 20:00:38 -06:00
Use the same approach as commit 08be74bfd7 (GetPrerequisites: Fix
handling of executable scripts, 2018-12-16, v3.14.0-rc1~206^2).
19 lines
635 B
CMake
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)
|