From 35cde3e35a40feeeeeee7d0ad96271a8ab91a21f Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 10 Sep 2014 16:43:24 +0000 Subject: [PATCH] Install a Hamlib-3 version of rigctld with WSJT-X. Because WSJT-X currently uses Hamlib-3 (statically linked) it also needs a version of rigctld with Hamlib-3 statically linked for any user that wishes to use the "Hamlib NET rigctld" CAT interface to remotly access a rig via IP using the Hamlib network control protocol. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4297 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9982c738a..e3f4fe984 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -499,6 +499,7 @@ if (hamlib_STATIC_LIBRARY) set (hamlib_LIBRARY "${hamlib_STATIC_LIBRARY}") set (hamlib_LIBRARIES "${hamlib_STATIC_LIBRARIES}") endif () +find_program (RIGCTLD_EXE rigctld) message (STATUS "hamlib_INCLUDE_DIRS: ${hamlib_INCLUDE_DIRS}") message (STATUS "hamlib_LIBRARY: ${hamlib_LIBRARY}") @@ -685,7 +686,7 @@ install (TARGETS jt9 jt65code jt9code ) install (PROGRAMS - ${CMAKE_BINARY_DIR}/contrib/kvasd${CMAKE_EXECUTABLE_SUFFIX} + ${CMAKE_BINARY_DIR}/contrib/kvasd${CMAKE_EXECUTABLE_SUFFIX} ${RIGCTLD_EXE} DESTINATION ${WSJT_BIN_DESTINATION} #COMPONENT Runtime )