playground/instrument/app/CMakeLists.txt
Rick Sprague d13cafcdeb update
2024-10-10 19:43:42 -04:00

7 lines
178 B
CMake

cmake_minimum_required(VERSION 3.5)
project(app)
file(GLOB SOURCES "src/*.cpp")
add_executable(${PROJECT_NAME} ${SOURCES})
target_link_libraries(${PROJECT_NAME} PRIVATE target)