mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-07-26 10:38:52 +00:00
b15bb59678
Added file io, and updated some ui elements. Also added Digital Rain standalone app for an example.
13 lines
195 B
CMake
13 lines
195 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(standalone_apps)
|
|
|
|
add_subdirectory(pacman)
|
|
add_subdirectory(digitalrain)
|
|
|
|
add_custom_target(
|
|
standalone_apps
|
|
DEPENDS pacman_app digitalrain_app
|
|
)
|
|
|