Skip to content

Instantly share code, notes, and snippets.

@orvn
Created January 23, 2022 17:34
Show Gist options
  • Save orvn/0064c0f2002f3842c546ade98c1c4208 to your computer and use it in GitHub Desktop.
Save orvn/0064c0f2002f3842c546ade98c1c4208 to your computer and use it in GitHub Desktop.
Xcode ScummVM initialization
#!/bin/bash
LIBS_ZIP_URL="http://bsr43.free.fr/scummvm/ScummVM-iOS-libraries.zip"
GIT_REPO_URL="https://github.com/scummvm/scummvm.git"
# Clone the repository
git clone "$GIT_REPO_URL"
# Compile create_project
(cd scummvm/devtools/create_project/xcode; xcodebuild)
# Create the workspace
mkdir build
cd build
curl -L "$LIBS_ZIP_URL" -O
unzip ScummVM-iOS-libraries.zip
rm ScummVM-iOS-libraries.zip
../scummvm/devtools/create_project/xcode/build/Release/create_project ../scummvm --xcode --enable-fluidsynth --disable-jpeg --disable-bink --disable-16bit --disable-mt32emu --disable-nasm --disable-opengl --disable-theora --disable-taskbar
open scummvm.xcodeproj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment