2019-05-07 13:52:25 -05:00
ScummVM-Switch README
==============================================================================
Installation
============
2019-05-24 10:32:47 -05:00
- The latest daily version of ScummVM for Switch is [here](https://buildbot.scummvm.org/snapshots/master/switch-master-latest.zip) (needs to be unzipped).
- Copy the scummvm folder to your SD card into the folder /switch/ so that you have a folder `/switch/scummvm` with `scummvm.nro` and other folders inside.
- Launch ScummVM using your favorite method to launch homebrew on the Switch
2019-05-07 13:52:25 -05:00
Notes
=====
- This README may be outdated, for more up-to-date instructions and notes see
the Switch Port Wiki: https://wiki.scummvm.org/index.php/Nintendo_Switch
Building the source code
========================
2019-05-24 10:32:47 -05:00
This port of ScummVM to the Switch is based on SDL2. It uses the open source SDK provided by devkitPro.
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
To build ScummVM for Switch:
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
- Obtain the ScummVM source code (https://github.com/scummvm/scummvm)
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
- Install the development tools for Switch following the official instructions (https://devkitpro.org/wiki/Getting_Started)
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
- Install libraries via
```
sudo dkp-pacman -S switch-portlibs
```
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
- Create a subdirectory somewhere outside the source folder for your ScummVM build and cd into it
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
- Execute the command (once a curl-config script exists for devkitA64, the --disable-libcurl could be omitted)
```
../scummvm/configure --host=switch --disable-libcurl
```
2019-05-07 13:52:25 -05:00
2019-05-24 10:32:47 -05:00
- Execute the command
```
make scummvm_switch.zip
```
2019-05-07 13:52:25 -05:00
Port Authors
============
cpasjuste
2019-05-24 10:32:47 -05:00
Thanks
======
[devkitPro](https://devkitpro.org devkitPro) and [Switchbrew](https://switchbrew.org/) teams