mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-04 23:45:26 +00:00
12 lines
148 B
CMake
12 lines
148 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(standalone_apps)
|
|
|
|
add_subdirectory(pacman)
|
|
|
|
add_custom_target(
|
|
standalone_apps
|
|
DEPENDS pacman_app
|
|
)
|
|
|