mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 21:00:30 -04:00
This version supports qt5 SvxLink release 17.12 -- 30 Dec 2017 ------------------------------------ The biggest news in this release is the initial revision of the SvxReflector application. The SvxReflector application is meant to be used as a center point to link SvxLink nodes together. The new SvxLink ReflectorLogic logic core is used to connect a SvxLink node to the reflector server. One or more logics can then be connected to the refelctor using normal logic linking. In addition a lot of smaller feature additions have been made and also a number of bugs have been fixed. The full list of changes and more details can be found below. Information on configuration of new features can be found in the manual pages.
17 lines
646 B
Text
17 lines
646 B
Text
--- src/qtel/CMakeLists.txt.orig 2018-03-04 18:59:29 UTC
|
|
+++ src/qtel/CMakeLists.txt
|
|
@@ -16,7 +16,14 @@ set(FORMS MainWindowBase.ui ComDialogBase.ui SettingsD
|
|
set(RESOURCES qtel.qrc)
|
|
|
|
# Libraries
|
|
+if(QT_ONLY)
|
|
+find_library(ASYNCCORE_LIB asynccore ${LIB_INSTALL_DIR})
|
|
+find_library(ASYNCAUDIO_LIB asyncaudio ${LIB_INSTALL_DIR})
|
|
+find_library(ECHOLIB_LIB echolib ${LIB_INSTALL_DIR})
|
|
+set(LIBS ${LIBS} ${ECHOLIB_LIB} asyncqt ${ASYNCAUDIO_LIB} ${ASYNCCORE_LIB} svxmisc)
|
|
+else(QT_ONLY)
|
|
set(LIBS ${LIBS} echolib asyncqt asyncaudio asynccore svxmisc)
|
|
+endif(QT_ONLY)
|
|
|
|
# Find the GSM codec library and include directory
|
|
find_package(GSM REQUIRED)
|