sprstk/examples/CMakeLists.txt
2025-08-06 13:14:35 -04:00

10 lines
282 B
CMake

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