From: drowe67 Date: Sun, 25 Mar 2018 21:44:05 +0000 (+0000) Subject: updated makefile for ofdm X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=ec5c75e263303a58917454050107caebb54047ba;p=freetel-svn-tracking.git updated makefile for ofdm git-svn-id: https://svn.code.sf.net/p/freetel/code@3440 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/codec2-dev/src/CMakeLists.txt b/codec2-dev/src/CMakeLists.txt index f7f15666..b9b761c4 100644 --- a/codec2-dev/src/CMakeLists.txt +++ b/codec2-dev/src/CMakeLists.txt @@ -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)