TrustedUser
2,147
edits
m (Text replacement - "</source>" to "</syntaxhighlight>") |
(→Creating the Xcode project: update instructions with new libs package that contains SDL_net and libcurl) |
||
Line 27: | Line 27: | ||
''Note:'' you may need to run xcodebuild with sudo the first time ('sudo xcodebuild') if the Xcode command line tools are not yet installed. Command line tools can also be installed from Xcode or using 'sudo xcode-select --install' | ''Note:'' you may need to run xcodebuild with sudo the first time ('sudo xcodebuild') if the Xcode command line tools are not yet installed. Command line tools can also be installed from Xcode or using 'sudo xcode-select --install' | ||
Create a build directory | Create a build directory: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
cd ../../../.. | cd ../../../.. | ||
Line 34: | Line 34: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Download the [https://www.scummvm.org/frs/build/scummvm-ios7-libs.zip iOS libraries package] and extract them in the build directory: | Download the [https://www.scummvm.org/frs/build/scummvm-ios7-libs-v2.zip iOS libraries package] and extract them in the build directory: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
unzip ~/Downloads/ | unzip ~/Downloads/scummvm-ios7-libs-v2.zip | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Generate Xcode project and open it: | Generate Xcode project and open it: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
../scummvm/devtools/create_project/xcode/build/Release/create_project ../scummvm --xcode --enable-fluidsynth --disable-bink --disable-mt32emu --disable-nasm --disable-opengl --disable-theora --disable-taskbar | ../scummvm/devtools/create_project/xcode/build/Release/create_project ../scummvm --xcode --enable-fluidsynth --disable-bink --disable-mt32emu --disable-nasm --disable-opengl --disable-theora --disable-taskbar | ||
</syntaxhighlight> | </syntaxhighlight> | ||