1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-19 21:10:12 +02:00

[macOS] ignore ad-hoc codesigning for Intel builds

This commit is contained in:
Andrey Filipenkov 2024-12-25 12:35:36 +03:00
parent 2ec518fdf0
commit 249c6d4d09

@ -41,6 +41,11 @@ if(APPLE_MACOS)
vcmi_install_conan_deps("${bundleContentsDir}")
# perform ad-hoc codesigning
# Intel Macs don't need it
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
return()
endif()
set(executablesToSign vcmiserver)
if(ENABLE_EDITOR)
list(APPEND executablesToSign vcmieditor)