9 lines
196 B
CMake
9 lines
196 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(fft-spark LANGUAGES C)
|
|
|
|
add_executable(fft-spark main.c)
|
|
|
|
target_link_libraries(fft-spark pthread)
|
|
|
|
install(TARGETS fft-spark RUNTIME DESTINATION bin)
|