1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-19 07:47:05 +01:00

adding CLI binaries

This commit is contained in:
2024-02-10 10:55:22 +01:00
parent cc0154f58c
commit 341b4bc73b
4 changed files with 54 additions and 0 deletions

18
utils/CMakeLists.txt Normal file
View File

@ -0,0 +1,18 @@
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)
target_link_libraries(latan-${_stem} LatAnalyze)
install(TARGETS latan-${_stem} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endforeach()