1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

CMake: Don't configure xcode entitlements on non-Apple platforms

This commit is contained in:
Oliver James 2024-10-16 12:42:41 +01:00
parent 24d33759b8
commit f27fbbb4a6

View file

@ -683,6 +683,10 @@ function(_juce_generate_icon source_target dest_target)
endfunction()
function(_juce_add_xcode_entitlements source_target dest_target)
if(NOT APPLE)
return()
endif()
get_target_property(juce_kind_string ${dest_target} JUCE_TARGET_KIND_STRING)
get_target_property(input_info_file ${source_target} JUCE_INFO_FILE)