mirror of
https://github.com/AlexandreRouma/dsp2.git
synced 2026-04-20 07:22:44 +00:00
10 lines
257 B
CMake
10 lines
257 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(dsp)
|
|
|
|
file(GLOB_RECURSE SRC "src/*.cpp" "dsp/*.cpp")
|
|
|
|
add_executable(${PROJECT_NAME} ${SRC})
|
|
|
|
target_include_directories(${PROJECT_NAME} PRIVATE "dsp/")
|
|
|
|
target_compile_options(${PROJECT_NAME} PRIVATE /std:c++20) |