updated makefile for ofdm
authordrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 25 Mar 2018 21:44:05 +0000 (21:44 +0000)
committerdrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 25 Mar 2018 21:44:05 +0000 (21:44 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@3440 01035d8c-6547-0410-b346-abe4f91aad63

codec2-dev/src/CMakeLists.txt

index f7f156661718deedc15d984ab293b1164551d1da..b9b761c4b78d1ab784dfd63fba13cb9dc00babdd 100644 (file)
@@ -213,6 +213,7 @@ set(CODEC2_SRCS
     lsp.c
     mbest.c
     newamp1.c
+    ofdm.c
     phase.c
     quantise.c
     pack.c
@@ -240,6 +241,7 @@ set(CODEC2_PUBLIC_HEADERS
     codec2_fdmdv.h
     codec2_cohpsk.h
     codec2_fm.h
+    codec2_ofdm.h
     fsk.h
     codec2_fifo.h
     comp.h
@@ -329,9 +331,18 @@ target_link_libraries(fm_demod ${CMAKE_REQUIRED_LIBRARIES})
 add_executable(cohpsk_mod cohpsk_mod.c)
 target_link_libraries(cohpsk_mod ${CMAKE_REQUIRED_LIBRARIES} codec2)
 
-add_executable(ofdm_mod ofdm_mod.c  ../src/ofdm.c)
+add_executable(ofdm_get_test_bits ofdm_get_test_bits.c)
+target_link_libraries(ofdm_get_test_bits ${CMAKE_REQUIRED_LIBRARIES} codec2)
+
+add_executable(ofdm_put_test_bits ofdm_put_test_bits.c)
+target_link_libraries(ofdm_put_test_bits ${CMAKE_REQUIRED_LIBRARIES} codec2)
+
+add_executable(ofdm_mod ofdm_mod.c)
 target_link_libraries(ofdm_mod ${CMAKE_REQUIRED_LIBRARIES} codec2)
 
+add_executable(ofdm_demod ofdm_demod.c octave.c)
+target_link_libraries(ofdm_demod ${CMAKE_REQUIRED_LIBRARIES} codec2)
+
 add_executable(fmfsk_mod fmfsk_mod.c)
 target_link_libraries(fmfsk_mod ${CMAKE_REQUIRED_LIBRARIES} codec2)