1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

[macOS] sign executables with bundle identifier

This commit is contained in:
Andrey Filipenkov 2022-10-22 16:58:12 +03:00
parent 8e8323a3d5
commit 35a6a24204

View File

@ -58,7 +58,7 @@ if(APPLE_MACOS)
)
foreach(executable ${executablesToSign})
execute_process(COMMAND
${codesignCommandWithEntitlements} \"${bundleContentsDir}/MacOS/\${executable}\"
${codesignCommandWithEntitlements} --identifier eu.vcmi.\${executable} \"${bundleContentsDir}/MacOS/\${executable}\"
)
endforeach()
")