b46cb65b [nostalgia/studio] Add version 877349df [nostalgia/core/studio] Increase max tilesheet export size, fix input handling when popups open 5418c062 [olympic] Change olympic::s_version to olympic::appVersion dd9c1100 [glutils] Update copyright for 2024 db82aee7 [teagba] Update copyright for 2024 edf15858 [teagba] Update copyright for 2024 d1efbb2f [ox] Update copyright for 2024 051623f4 [olympic,nostalgia] Update copyright for 2024 055d64b1 [olympic] Add support for an AppLib app specific version de9f8426 [ox/std] Add error.hpp include to memory.hpp 200e5867 Add .idea to .gitignore f1609519 [olympic] Cleanup e452d9db [nostalgia] Add python3-mypy to Debian deps 43a87b60 [nostalgia] Ensure pkg-gba reads .current_build without a new line 8acc6244 [olympic/keel] Improve error clarity on pack some common failures bd2aeee2 [ox/claw] Improve error clarity when loading ModelObjects git-subtree-dir: deps/nostalgia git-subtree-split: b46cb65b7f5b1ea17c115fcb31a6baff323ea1a3
44 lines
816 B
Markdown
44 lines
816 B
Markdown
# Nostalgia
|
|
|
|
## Prerequisites
|
|
|
|
* Install GCC, Clang, or Visual Studio with C++20 support
|
|
* Install [devkitPro](https://devkitpro.org/wiki/Getting_Started) to build for GBA
|
|
* Install Python 3
|
|
* Install Ninja, Make, and CMake
|
|
* Consider also installing ccache for faster subsequent build times
|
|
|
|
### Debian
|
|
|
|
For Debian (and probably other Linux distros, but the package names will
|
|
probably differ), install the following additional packages:
|
|
* pkg-config
|
|
* xorg-dev
|
|
* libgtk-3-dev
|
|
* python3-mypy
|
|
|
|
## Build
|
|
|
|
Build options: release, debug, asan, gba, gba-debug
|
|
|
|
make purge configure-{gba,release,debug} install
|
|
|
|
## Run
|
|
|
|
### Studio
|
|
|
|
make run-studio
|
|
|
|
### Native Platform
|
|
|
|
make run
|
|
|
|
### GBA
|
|
|
|
make gba-run
|
|
|
|
## Contributing
|
|
|
|
Please read the [Developer Handbook](developer-handbook.md) for information on
|
|
coding standards.
|