mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-19 00:42:14 -07:00
Find entitlements somehow
This commit is contained in:
parent
96f270c052
commit
65e76d2ff5
1 changed files with 3 additions and 3 deletions
|
|
@ -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()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue