12 lines
279 B
CMake
12 lines
279 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
project(R_S)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
add_executable(recursive_fft
|
|
fft/recursive_fft.cpp)
|
|
add_executable(recursive_fft_cplx
|
|
fft/recursive_fft_cplx.cpp)
|
|
add_executable(iterative_fft_cplx
|
|
fft/iterative_fft_cplx.cpp)
|