Difference between revisions of "Compiling ScummVM/Switch"
Jump to navigation
Jump to search
Ccawley2011 (talk | contribs) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
= Compiling ScummVM for Switch = | |||
This page describes how you build a Switch binary from the ScummVM source tree. | This page describes how you build a Switch binary from the ScummVM source tree. | ||
Line 15: | Line 17: | ||
sudo dkp-pacman -Sy | sudo dkp-pacman -Sy | ||
sudo dkp-pacman -S \ | sudo dkp-pacman -S \ | ||
switch-sdl2 \ | switch-sdl2 \ | ||
switch-libmad \ | switch-libmad \ | ||
switch-libogg \ | switch-libogg \ | ||
switch-libvorbis \ | switch-libvorbis \ | ||
switch-flac \ | switch-flac \ | ||
switch-libtheora \ | switch-libtheora \ | ||
switch-libpng \ | switch-libpng \ | ||
switch-libjpeg-turbo \ | switch-libjpeg-turbo \ | ||
switch-zlib \ | switch-zlib \ | ||
switch-freetype \ | switch-freetype \ | ||
switch-sdl2_net \ | switch-sdl2_net \ | ||
switch-curl \ | switch-curl \ | ||
switch- | switch-giflib \ | ||
switch-pkg-config | switch-libfribidi \ | ||
switch-pkg-config | |||
</syntaxhighlight> | </syntaxhighlight> | ||
* Create a subdirectory somewhere outside the source folder for your ScummVM build and cd into it | * Create a subdirectory somewhere outside the source folder for your ScummVM build and cd into it | ||
* Execute the command | * Execute the command | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
../scummvm/configure --host=switch | ../scummvm/configure --host=switch | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 13:42, 7 August 2022
Compiling ScummVM for Switch
This page describes how you build a Switch binary from the ScummVM source tree.
Building From Source
This port of ScummVM to the Switch is based on SDL2. It uses the open source SDK provided by devkitPro.
To build ScummVM for Switch:
- Obtain the ScummVM source code (https://github.com/scummvm/scummvm)
- Install the development tools for Switch following the official instructions (https://devkitpro.org/wiki/Getting_Started)
- Update package database and install libraries (see here for an updated list)
sudo dkp-pacman -Sy
sudo dkp-pacman -S \
switch-sdl2 \
switch-libmad \
switch-libogg \
switch-libvorbis \
switch-flac \
switch-libtheora \
switch-libpng \
switch-libjpeg-turbo \
switch-zlib \
switch-freetype \
switch-sdl2_net \
switch-curl \
switch-giflib \
switch-libfribidi \
switch-pkg-config
- Create a subdirectory somewhere outside the source folder for your ScummVM build and cd into it
- Execute the command
../scummvm/configure --host=switch
- Execute the command
make scummvm_switch.zip