Go to file
2021-02-20 19:00:47 -06:00
.vs [nostalgia] Add launch.vs.json 2020-02-16 14:18:22 -06:00
cmake/modules [nostalgia] Get building with Conan 2019-12-30 22:51:35 -06:00
deps [ox/std] Add OS detection 2021-02-03 19:23:55 -06:00
devenv [nostalgia/devenv] Remove dependency on external devenv Docker image 2018-04-13 18:32:25 -05:00
jenkins [nostalgia] Add support for a persistent external vcpkg dir 2020-08-15 20:59:37 -05:00
sample_project [nostalgia/sample_project] Give Charset's 5 rounded features 2021-01-21 00:43:54 -06:00
scripts [nostalgia] Add pybb tool to help with cross platform compatibility 2021-02-20 19:00:47 -06:00
src [nostalgia/core] Finish removing alpha bit from color 2021-02-02 19:24:59 -06:00
.gdblogger.json [nostalgia] Switch to strong int Error 2019-07-28 00:32:42 -05:00
.gitignore [nostalgia] Update .gitignore 2020-08-15 21:08:42 -05:00
.liccor.yml [nostalgia] Update liccor file 2021-01-21 00:34:08 -06:00
CMakeLists.txt [nostalgia] Rename plugin references to module 2020-12-17 20:40:23 -06:00
developer-handbook.md [nostalgia] Remove nodiscard from handbook, as ox::Error is always nodiscard now 2020-10-12 20:03:05 -05:00
Dockerfile [nostalgia] Update Dockerfile to support vcpkg 2020-08-28 19:14:35 -05:00
LICENSE Initial commit. 2016-03-15 00:14:56 -05:00
Makefile [nostalgia] Add pybb tool to help with cross platform compatibility 2021-02-20 19:00:47 -06:00
README.md [nostalgia] Add vcpkg prerequisites to README 2020-08-05 20:30:05 -05:00

Nostalgia

Prerequisites

  • Install GCC, Clang, or Visual Studio with C++17 support (including std::filesystem)
  • Install devkitPro to build for GBA
  • Install Ninja, Make, and CMake
  • Ensure you have prerequisites for vcpkg (curl, zip, unzip)
  • Consider also installing ccache for faster subsequent build times

Platform Specific Setup

macOS

Install and use gmake instead of the make that comes with the system.

Build

Build options: release, debug, asan, gba, gba-debug

make vcpkg
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 for information on coding standards.