Added an export template setup script for osx.

This commit is contained in:
Relintai 2022-01-29 18:56:06 +01:00
parent ad78491e59
commit feeb36f99e

View File

@ -0,0 +1,12 @@
#templates
cd ../../engine/bin
cp -r ../misc/dist/osx_template.app .
mkdir -p osx_template.app/Contents/MacOS
cp godot.osx.opt.universal osx_template.app/Contents/MacOS/godot_osx_release.64
cp godot.osx.opt.debug.universal osx_template.app/Contents/MacOS/godot_osx_debug.64
chmod +x osx_template.app/Contents/MacOS/godot_osx*
zip -q -9 -r osx.zip osx_template.app
cd ../../tools/osx