1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00
LatAnalyze/utils/CMakeLists.txt

19 lines
424 B
CMake
Raw Normal View History

2024-02-10 09:55:22 +00:00
set(UTILS_STEM
plot
resample
sample-combine
sample-dwt
sample-element
sample-fake
sample-ft
sample-merge
sample-plot-corr
sample-plot
sample-read)
foreach(_stem ${UTILS_STEM})
add_executable(latan-${_stem} ${_stem}.cpp)
2024-02-10 11:58:23 +00:00
target_link_libraries(latan-${_stem} LatAnalyze compiler_flags)
2024-02-10 09:55:22 +00:00
install(TARGETS latan-${_stem} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endforeach()