You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
635 B
19 lines
635 B
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)
|