lasp/beamforming/c/CMakeLists.txt

22 lines
401 B
CMake
Raw Normal View History

2018-01-29 15:14:50 +00:00
if(!ASCEE_DEBUG)
# SET_SOURCE_FILES_PROPERTIES(si_lpn.c PROPERTIES COMPILE_FLAGS -O3)
# SET_SOURCE_FILES_PROPERTIES(si_math.c PROPERTIES COMPILE_FLAGS -O3)
endif(!ASCEE_DEBUG)
add_library(beamforming_lib
fft.c
ascee_math.c
ascee_math_raw.c
ascee_alg.c
2018-01-29 15:14:50 +00:00
ascee_assert.c
ascee_tracer.c
2018-01-29 15:14:50 +00:00
window.c
aps.c
ps.c
2018-01-29 15:14:50 +00:00
mq.c
worker.c
)
target_link_libraries(beamforming_lib fftpack openblas)