mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04: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
|
|
)
|
|
|