Created
January 23, 2022 17:34
-
-
Save orvn/0064c0f2002f3842c546ade98c1c4208 to your computer and use it in GitHub Desktop.
Xcode ScummVM initialization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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