Skip to content

Instantly share code, notes, and snippets.

@edenwaith
Created December 12, 2020 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edenwaith/a9e5c45075bf98b23f174a7c38dcde7b to your computer and use it in GitHub Desktop.
Save edenwaith/a9e5c45075bf98b23f174a7c38dcde7b to your computer and use it in GitHub Desktop.
A script to build a shell Mac app bundle from AGS 3.5.0
#!/bin/sh
# Place this script in the folder which contains CMakeLists.txt
export BUILD_TYPE=release
mkdir build_$BUILD_TYPE
cd build_$BUILD_TYPE
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment