mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-09-11 17:19:29 +00:00
100bea644c
This pull requests adds a new type of external app to the firmware: The standalone app. Pros: Will work after an upgrade. Size of image is only limited by shared heap size of M0 (application) (64kb total). Cons: No full access to all functions in the main firmware. One well defined (and versioned) API handles all communication. The Pacman app was converted to be the first the the new kind.
12 lines
149 B
CMake
12 lines
149 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
project(standalone_apps)
|
|
|
|
add_subdirectory(pacman)
|
|
|
|
add_custom_target(
|
|
standalone_apps
|
|
DEPENDS pacman_app
|
|
)
|
|
|