Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
spectogram/src/CMakeLists.txt

10 lines
227 B
CMake

file(GLOB sources *.cpp)
file(GLOB headers *.hpp)
foreach(source ${sources})
get_filename_component(exec ${source} NAME_WE)
add_executable(${exec} ${source} ${headers})
target_link_libraries(${exec} ${libs})
endforeach()