From 42e881bbc432f1c3b86e98f13e9359f347552095 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Thu, 6 May 2021 08:03:19 -0500 Subject: [PATCH] Add q65code.f90 to CMakeLists.txt. --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index db5f8c969..e9a3deca5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1110,6 +1110,9 @@ target_link_libraries (sumsim wsjt_fort wsjt_cxx) add_executable (q65sim lib/qra/q65/q65sim.f90) target_link_libraries (q65sim wsjt_fort wsjt_cxx) +add_executable (q65code lib/qra/q65/q65code.f90) +target_link_libraries (q65code wsjt_fort wsjt_cxx) + add_executable (test_q65 lib/test_q65.f90) target_link_libraries (test_q65 wsjt_fort wsjt_cxx) @@ -1543,7 +1546,8 @@ install (TARGETS jt9 wsprd fmtave fcal fmeasure ) if(WSJT_BUILD_UTILS) -install (TARGETS ft8code jt65code jt9code jt4code msk144code fst4sim q65sim +install (TARGETS ft8code jt65code jt9code jt4code msk144code + q65code fst4sim q65sim RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT runtime BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT runtime )