Files
Totoo b15bb59678 Standalone app api v3 (#2772)
Added file io, and updated some ui elements.
Also added Digital Rain standalone app for an example.
2025-09-01 11:50:46 +02:00

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
)