This repository contains a fork of Starlight, a switch modding template, based on Dialga.
It has been modified to use CMake and supports importing in CLion. Additionally, it has tasks to easily integrate with SimpleModManager, as well as export to common emulators.
- devkitPro
- Python 3
- The Keystone-Engine Python Module
The build has only been tested on Arch Linux and WSL, and is not designed for Windows.
Simply run:
$ cmake . -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain.cmake # Configure tasks
$ make release_atmosphere # build tree
$ make zip_atmosphere # export as zip
$ make send_atmosphere # optional: send to switch using ftp
To use SimpleModManager:
$ cmake . -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain.cmake # Configure tasks
$ make release_modmanager # build tree
$ make zip_modmanager # export as zip
$ make send_modmanager # optional: send to switch using ftp
There's also targets for Ryujinx and Yuzu (without the send_ target).
After a successful build, simply transfer the files located inside release/<release_type>
to the root of your switch's SD card or your emulator.
- CraftyBoss - The initial Dialga repository
- vbe0201 - The switch-cmake files we ported for use in starlight