With the current configuration in the app template, it is impossible to make an app pass gatekeeper - it requires minium sdk version of 10.9.
I've confirmed that changing
|
"target": "10.5", |
|
"cflags": "-g -arch x86_64 -Wl,-rpath,@executable_path/../Frameworks", |
to
"target": "10.9",
"cflags": "-g -arch x86_64",
and rebuilding the binaries does the trick.
Would you care for a PR, @ronaldoussoren?