mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-03 12:06:52 -04:00
11 lines
148 B
CMake
11 lines
148 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(standalone_apps)
|
|
|
|
add_subdirectory(pacman)
|
|
|
|
add_custom_target(
|
|
standalone_apps
|
|
DEPENDS pacman_app
|
|
)
|
|
|