Is there a way to use ad-hoc signing (pseudo-identity) from the Projucer?
I mean something to do that:
codesign --options runtime \
--entitlements ./resources/Spaghettis.entitlements \
--deep -s "-" "${app}"
Note that if i use “Hardened Runtime Options” without a valid ID i get in Xcode:
Code Signing Warning: "Spaghettis - App" isn't code signed but requires entitlements. It is not possible to add entitlements to a binary without signing it.
(I guess that i will have to use a shell script, but a way to do it without would be better).