commit 0bc20788d5f6f3bb4a8a0c3cbe64dac1afad6974
parent e36085cf4614ff65f6ec130cbec08a6118a7c53e
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Thu, 24 Oct 2024 20:42:19 +0200
set execute permission for mac setup command script
Diffstat:
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/source/juce.cmake b/source/juce.cmake
@@ -124,7 +124,7 @@ macro(createJucePlugin targetName productName isSynth plugin4CC binaryDataProjec
if(USE_VST3)
if(APPLE)
install(TARGETS ${targetName}_VST3 DESTINATION . COMPONENT ${productName}-VST3)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT ${productName}-VST3)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT ${productName}-VST3)
else()
get_target_property(vst3OutputFolder ${targetName}_VST3 ARCHIVE_OUTPUT_DIRECTORY)
if(UNIX)
@@ -142,17 +142,17 @@ macro(createJucePlugin targetName productName isSynth plugin4CC binaryDataProjec
if(USE_VST2 AND JUCE_GLOBAL_VST2_SDK_PATH)
install(TARGETS ${targetName}_VST DESTINATION . COMPONENT ${productName}-VST2)
if(APPLE)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT ${productName}-VST2)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT ${productName}-VST2)
endif()
endif()
if(USE_AU AND APPLE)
install(TARGETS ${targetName}_AU DESTINATION . COMPONENT ${productName}-AU)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT ${productName}-AU)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT ${productName}-AU)
endif()
if(USE_CLAP)
install(TARGETS ${targetName}_CLAP DESTINATION . COMPONENT ${productName}-CLAP)
if(APPLE)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT ${productName}-CLAP)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT ${productName}-CLAP)
endif()
endif()
elseif(UNIX)
@@ -180,7 +180,7 @@ macro(createJucePlugin targetName productName isSynth plugin4CC binaryDataProjec
endif()
install(DIRECTORY ${lv2OutputFolder}/${productName}.lv2 DESTINATION ${dest} COMPONENT ${productName}-LV2 FILES_MATCHING PATTERN ${pattern} PATTERN "*.ttl")
if(APPLE)
- install(FILES ${macSetupFile} DESTINATION ${dest} COMPONENT ${productName}-LV2)
+ install(FILES ${macSetupFile} DESTINATION ${dest} PERMISSIONS GROUP_EXECUTE COMPONENT ${productName}-LV2)
endif()
endif()
diff --git a/source/mqPerformanceTest/CMakeLists.txt b/source/mqPerformanceTest/CMakeLists.txt
@@ -22,7 +22,7 @@ endif()
install(TARGETS mqPerformanceTest DESTINATION . COMPONENT VavraPerformanceTest)
if(APPLE)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT VavraPerformanceTest)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT VavraPerformanceTest)
endif()
set_property(TARGET mqPerformanceTest PROPERTY FOLDER "Vavra")
diff --git a/source/virusTestConsole/CMakeLists.txt b/source/virusTestConsole/CMakeLists.txt
@@ -28,7 +28,7 @@ if(${gearmulator_SYNTH_OSIRUS})
install(DIRECTORY ${CMAKE_SOURCE_DIR}/deploy/linux/ DESTINATION . COMPONENT OsirusTestConsole)
endif()
if(APPLE)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT OsirusTestConsole)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT OsirusTestConsole)
endif()
endif()
@@ -41,7 +41,7 @@ if(${gearmulator_SYNTH_OSTIRUS})
install(DIRECTORY ${CMAKE_SOURCE_DIR}/deploy/linux/ DESTINATION . COMPONENT OsTIrusTestConsole)
endif()
if(APPLE)
- install(FILES ${macSetupFile} DESTINATION . COMPONENT OsTIrusTestConsole)
+ install(FILES ${macSetupFile} DESTINATION . PERMISSIONS GROUP_EXECUTE COMPONENT OsTIrusTestConsole)
endif()
endif()