From 03b680dee5efeabb075f88e17883ebaf4c456f16 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 22 Apr 2022 11:04:56 -0400 Subject: [PATCH] Fix CMakeLists.txt to build program test_snr. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c996bb248..caad358be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -540,6 +540,7 @@ set (wsjt_FSRCS lib/sync9.f90 lib/sync9f.f90 lib/sync9w.f90 + lib/test_snr.f90 lib/timf2.f90 lib/tweak1.f90 lib/twkfreq.f90 @@ -1127,6 +1128,9 @@ target_link_libraries (jt65sim wsjt_fort wsjt_cxx) add_executable (sumsim lib/sumsim.f90) target_link_libraries (sumsim wsjt_fort wsjt_cxx) +add_executable (test_snr lib/test_snr.f90) +target_link_libraries (test_snr wsjt_fort) + add_executable (q65sim lib/qra/q65/q65sim.f90) target_link_libraries (q65sim wsjt_fort wsjt_cxx)