Go to file
2024-09-29 16:14:26 -05:00
.gitea/workflows [nostalgia] Add Gitea action file 2023-12-24 06:38:28 -06:00
.vs [nostalgia] Add launch.vs.json 2020-02-16 14:18:22 -06:00
deps [ox] Cleanup 2024-09-28 18:44:50 -05:00
devenv [nostalgia/devenv] Add missing pacman.conf 2022-01-13 02:04:21 -06:00
sample_project [nostalgia/core] Add PaletteV4, with support for page names, make PaletteColor object 2024-09-06 01:33:40 -05:00
scripts [keel] Add manifest to pack output 2024-09-14 20:47:54 -05:00
src [nostalgia/core/studio] Fix PaletteEditor color name edit 2024-09-29 16:14:26 -05:00
.clang-tidy [glutils] Remove trailing whitespace 2024-04-21 10:21:44 -05:00
.gitignore [keel] Add manifest to pack output 2024-09-14 20:47:54 -05:00
.liccor.yml [nostalgia] Update liccor file 2024-01-17 22:36:09 -06:00
.lldbinit [nostalgia] Add .lldbinit 2023-12-23 17:41:18 -06:00
CMakeLists.txt [nostalgia] Allow disabling of BUILD_SHARED_LIBS 2024-09-17 23:51:37 -05:00
developer-handbook.md [nostalgia] Update developer-handbook oxTrace documentation 2024-09-07 20:50:44 -05:00
Dockerfile [nostalgia] Remove conan from devenv 2023-12-24 06:41:18 -06:00
Makefile [nostalgia/studio] Update app name 2023-12-16 10:35:28 -06:00
README.md [nostalgia] Replace default make command with build instead of install 2024-06-27 20:03:39 -05:00

Nostalgia

Prerequisites

  • Install GCC, Clang, or Visual Studio with C++20 support
  • Install devkitPro to build for GBA
    • Install the gba-dev package
  • 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} build

Run

Studio

make run-studio

Native Platform

make run

GBA

make gba-run

Contributing

Please read the Developer Handbook for information on coding standards.