mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
19 lines
424 B
CMake
19 lines
424 B
CMake
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 compiler_flags)
|
|
install(TARGETS latan-${_stem} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
endforeach()
|