sprstk/examples/CMakeLists.txt
2025-08-02 13:39:43 -04:00

9 lines
204 B
CMake

cmake_minimum_required(VERSION 3.21)
function(add_example name)
add_executable("example-${name}" ${name}.cpp)
target_link_libraries("example-${name}" PUBLIC sprstk)
endfunction()
add_example(basic)