From 87adf8a9e6a1780d12274456c882190d867eb3ae Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Sun, 28 Aug 2016 03:53:18 +0000 Subject: [PATCH] Update CMakeLists.txt. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7036 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- CMakeLists.txt | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 433c64e9f..12b25c7ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -307,6 +307,8 @@ set (wsjt_FSRCS lib/avecho.f90 lib/averms.f90 lib/azdist.f90 + lib/bpdecode40.f90 + lib/bpdecode144.f90 lib/baddata.f90 lib/ccf2.f90 lib/ccf65.f90 @@ -400,7 +402,8 @@ set (wsjt_FSRCS lib/JTMSKsim.f90 lib/jtmsk_decode.f90 lib/jtmsk_short.f90 - lib/ldpcsim.f90 + lib/ldpcsim144.f90 + lib/ldpcsim40.f90 lib/libration.f90 lib/lorentzian.f90 lib/lpf1.f90 @@ -1065,12 +1068,15 @@ target_link_libraries (jt4code wsjt_fort wsjt_cxx) add_executable (jt65 lib/jt65.f90 lib/jt65_test.f90 wsjtx.rc) target_link_libraries (jt65 wsjt_fort wsjt_cxx) -add_executable (ldpcsim lib/ldpcsim.f90 wsjtx.rc) -target_link_libraries (ldpcsim wsjt_fort wsjt_cxx) - add_executable (JTMSKsim lib/JTMSKsim.f90 wsjtx.rc) target_link_libraries (JTMSKsim wsjt_fort wsjt_cxx) +add_executable (ldpcsim40 lib/ldpcsim40.f90 wsjtx.rc) +target_link_libraries (ldpcsim40 wsjt_fort wsjt_cxx) + +add_executable (ldpcsim144 lib/ldpcsim144.f90 wsjtx.rc) +target_link_libraries (ldpcsim144 wsjt_fort wsjt_cxx) + add_executable (msk144sim lib/msk144sim.f90 wsjtx.rc) target_link_libraries (msk144sim wsjt_fort wsjt_cxx)