Find entitlements somehow

This commit is contained in:
ZeldaZach 2025-01-09 17:54:48 -05:00
parent 96f270c052
commit 65e76d2ff5
No known key found for this signature in database

View file

@ -11,15 +11,15 @@ if(APPLE)
foreach(INTERIOR_DLL IN LISTS INTERIOR_DLLS_LIST) foreach(INTERIOR_DLL IN LISTS INTERIOR_DLLS_LIST)
execute_process( execute_process(
COMMAND "codesign" "--sign" "$ENV{MACOS_CERTIFICATE_NAME}" "--entitlements" ".ci/macos.entitlements" COMMAND "codesign" "--sign" "$ENV{MACOS_CERTIFICATE_NAME}" "--entitlements" "../.ci/macos.entitlements"
"--options" "runtime" "--force" "--deep" "--timestamp" "--verbose" "${INTERIOR_DLL}" "--options" "runtime" "--force" "--deep" "--timestamp" "--verbose" "${INTERIOR_DLL}"
) )
endforeach() endforeach()
message(STATUS "Signing Exterior Applications ${app_name}.app") message(STATUS "Signing Exterior Applications ${app_name}.app")
execute_process( execute_process(
COMMAND "codesign" "--sign" "$ENV{MACOS_CERTIFICATE_NAME}" "--entitlements" ".ci/macos.entitlements" "--options" COMMAND "codesign" "--sign" "$ENV{MACOS_CERTIFICATE_NAME}" "--entitlements" "../.ci/macos.entitlements"
"runtime" "--force" "--deep" "--timestamp" "--verbose" "${FULL_APP_PATH}" "--options" "runtime" "--force" "--deep" "--timestamp" "--verbose" "${FULL_APP_PATH}"
) )
endforeach() endforeach()
endif() endif()