mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-11-28 07:30:31 -05:00
Added file io, and updated some ui elements. Also added Digital Rain standalone app for an example.
12 lines
195 B
CMake
12 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
|
|
)
|
|
|