mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
539 lines
19 KiB
Prolog
539 lines
19 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2018-05-26T16:57:32
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui serialport network multimedia xml
|
|
|
|
#QT += sql
|
|
#DEFINES += USESQL
|
|
|
|
#Uncomment The following line to enable USB controllers (Shuttle/RC-28 etc.)
|
|
DEFINES += USB_CONTROLLER
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport websockets
|
|
|
|
contains(DEFINES,USB_CONTROLLER){
|
|
lessThan(QT_MAJOR_VERSION, 6): QT += gamepad
|
|
}
|
|
|
|
TARGET = wfview
|
|
TEMPLATE = app
|
|
|
|
# VERSION can be overridden on the qmake command line, e.g.:
|
|
# qmake ... VERSION="1.2.3"
|
|
# If set, it replaces the default WFVIEW_VERSION.
|
|
isEmpty(VERSION) {
|
|
DEFINES += WFVIEW_VERSION=\\\"2.22\\\"
|
|
} else {
|
|
DEFINES += WFVIEW_VERSION=\\\"$$VERSION\\\"
|
|
}
|
|
|
|
DEFINES += BUILD_WFVIEW
|
|
|
|
CONFIG += c++17
|
|
|
|
CONFIG(debug, release|debug) {
|
|
# For Debug builds only:
|
|
linux:QMAKE_CXXFLAGS += -faligned-new
|
|
win32:DESTDIR = wfview-debug
|
|
} else {
|
|
# For Release builds only:
|
|
# The next line doesn't seem to be used?
|
|
#linux:QMAKE_CXXFLAGS += -s
|
|
linux:QMAKE_CXXFLAGS += -fvisibility=hidden
|
|
linux:QMAKE_CXXFLAGS += -fvisibility-inlines-hidden
|
|
linux:QMAKE_CXXFLAGS += -faligned-new
|
|
linux:QMAKE_LFLAGS += -O2 -s
|
|
win32:DESTDIR = wfview-release
|
|
DEFINES += NDEBUG
|
|
}
|
|
|
|
TRANSLATIONS += translations/wfview_en.ts \
|
|
translations/wfview_en_GB.ts \
|
|
translations/wfview_es_ES.ts \
|
|
translations/wfview_it.ts \
|
|
translations/wfview_tr.ts \
|
|
translations/wfview_de.ts \
|
|
translations/wfview_ja.ts \
|
|
translations/wfview_zh_TW.ts \
|
|
translations/wfview_cs_CZ.ts \
|
|
translations/wfview_pl.ts \
|
|
translations/wfview_nl_NL.ts \
|
|
translations/wfview_zh_CN.ts
|
|
|
|
|
|
# RTAudio defines
|
|
win32:DEFINES += __WINDOWS_WASAPI__
|
|
#win32:DEFINES += __WINDOWS_DS__ # Requires DirectSound libraries
|
|
#linux:DEFINES += __LINUX_ALSA__
|
|
#linux:DEFINES += __LINUX_OSS__
|
|
linux:DEFINES += __LINUX_PULSE__
|
|
macx:DEFINES += __MACOSX_CORE__
|
|
!linux:SOURCES += ../rtaudio/RTAudio.cpp
|
|
!linux:HEADERS += ../rtaudio/RTAudio.h
|
|
!linux:INCLUDEPATH += ../rtaudio
|
|
|
|
linux:LIBS += -lpulse -lpulse-simple -lrtaudio -lpthread -ludev
|
|
|
|
win32:INCLUDEPATH += ../portaudio/include
|
|
!win32:LIBS += -lportaudio
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which as been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
DEFINES += QCUSTOMPLOT_USE_LIBRARY
|
|
|
|
# These defines are used for the resampler
|
|
equals(QT_ARCH, i386): win32:DEFINES += USE_SSE
|
|
equals(QT_ARCH, i386): win32:DEFINES += USE_SSE2
|
|
equals(QT_ARCH, x86_64): DEFINES += USE_SSE
|
|
equals(QT_ARCH, x86_64): DEFINES += USE_SSE2
|
|
equals(QT_ARCH, arm): DEFINES += USE_NEON
|
|
DEFINES += OUTSIDE_SPEEX
|
|
DEFINES += RANDOM_PREFIX=wf
|
|
|
|
# These defines are used for the Eigen library
|
|
DEFINES += EIGEN_MPL2_ONLY
|
|
DEFINES += EIGEN_DONT_VECTORIZE #Clear vector flags
|
|
equals(QT_ARCH, i386): win32:DEFINES += EIGEN_VECTORIZE_SSE3
|
|
equals(QT_ARCH, x86_64): DEFINES += EIGEN_VECTORIZE_SSE3
|
|
|
|
|
|
isEmpty(PREFIX) {
|
|
PREFIX = /usr/local
|
|
}
|
|
|
|
DEFINES += PREFIX=\\\"$$PREFIX\\\"
|
|
|
|
macx:INCLUDEPATH += /usr/local/include
|
|
macx:LIBS += -L/usr/local/lib
|
|
|
|
win32:RC_ICONS = "resources/icons/Windows/wfview 512x512.ico"
|
|
|
|
macx{
|
|
ICON = resources/wfview.icns
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 12.0
|
|
QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64
|
|
MY_ENTITLEMENTS.name = CODE_SIGN_ENTITLEMENTS
|
|
MY_ENTITLEMENTS.value = resources/wfview.entitlements
|
|
QMAKE_MAC_XCODE_SETTINGS += MY_ENTITLEMENTS
|
|
QMAKE_INFO_PLIST = resources/Info.plist
|
|
rigFiles.files = rigs
|
|
rigFiles.path = Contents/Resources
|
|
QMAKE_BUNDLE_DATA += rigFiles
|
|
}
|
|
|
|
QMAKE_TARGET_BUNDLE_PREFIX = org.wfview
|
|
|
|
!win32:DEFINES += HOST=\\\"`hostname`\\\" UNAME=\\\"`whoami`\\\"
|
|
!win32:DEFINES += GITSHORT="\\\"$(shell git -C \"$$PWD\" rev-parse --short HEAD)\\\""
|
|
|
|
win32:DEFINES += GITSHORT=\\\"$$system(git -C $$PWD rev-parse --short HEAD)\\\"
|
|
win32:DEFINES += HOST=\\\"$$system(hostname)\\\"
|
|
win32:DEFINES += UNAME=\\\"$$system(echo %USERNAME%)\\\"
|
|
|
|
|
|
RESOURCES += qdarkstyle/style.qrc \
|
|
resources/resources.qrc \
|
|
translations/translation.qrc
|
|
|
|
|
|
unix:target.path = $$PREFIX/bin
|
|
INSTALLS += target
|
|
|
|
# Why doesn't this seem to do anything?
|
|
unix:DISTFILES += resources/icons/bitmap/wfview.png \
|
|
resources/install.sh
|
|
unix:DISTFILES += resources/wfview.desktop
|
|
unix:DISTFILES += resources/org.wfview.wfview.metainfo.xml
|
|
|
|
unix:applications.files = resources/wfview.desktop
|
|
unix:applications.path = $$PREFIX/share/applications
|
|
INSTALLS += applications
|
|
|
|
unix:icons.files = resources/icons/bitmap/wfview.png
|
|
unix:icons.path = $$PREFIX/share/icons/hicolor/256x256/apps
|
|
INSTALLS += icons
|
|
|
|
unix:metainfo.files = resources/org.wfview.wfview.metainfo.xml
|
|
unix:metainfo.path = $$PREFIX/share/metainfo
|
|
INSTALLS += metainfo
|
|
|
|
unix:stylesheets.files = qdarkstyle
|
|
unix:stylesheets.path = $$PREFIX/share/wfview
|
|
INSTALLS += stylesheets
|
|
|
|
unix:rigs.files = rigs/*
|
|
unix:rigs.path = $$PREFIX/share/wfview/rigs
|
|
INSTALLS += rigs
|
|
|
|
macx:LIBS += -framework CoreAudio -framework CoreFoundation -lpthread -lopus
|
|
|
|
# Do not do this, it will hang on start:
|
|
# CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT
|
|
|
|
CONFIG(debug, release|debug) {
|
|
|
|
macos:LIBS += -L ../qcustomplot/qcustomplot-sharedlib/build -lqcustomplotd
|
|
|
|
lessThan(QT_MAJOR_VERSION, 6) {
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libQCustomPlotd.so/ {print \"-lQCustomPlotd\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplotd2.so/ {print \"-lqcustomplotd2\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplotd.so/ {print \"-lqcustomplotd\"}'")
|
|
|
|
} else {
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libQCustomPlotdQt6.so/ {print \"-lQCustomPlotdQt6\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplotd2qt6.so/ {print \"-lqcustomplotd2qt6\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplotdqt6.so/ {print \"-lqcustomplotdqt6\"}'")
|
|
}
|
|
|
|
win32 {
|
|
contains(QMAKE_TARGET.arch, x86_64) {
|
|
LIBS += -L../opus/win32/VS2015/x64/DebugDLL/
|
|
LIBS += -L../qcustomplot/x64 -lqcustomplotd2
|
|
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\qcustomplot\x64\qcustomplotd2.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\portaudio\msvc\x64\Debug\portaudio_x64.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\hidapi\windows\X64\Debug\hidapi.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\opus\win32\VS2015\x64\DebugDLL\opus-0.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c xcopy /s/y ..\wfview\rigs\*.* wfview-debug\rigs\*.* $$escape_expand(\\n\\t))
|
|
LIBS += -L../portaudio/msvc/X64/Debug/ -lportaudio_x64
|
|
contains(DEFINES, FTDI_SUPPORT) {
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\LibFT4222-v1.4.8\imports\LibFT4222\dll\amd64\LibFT4222-64.dll wfview-debug $$escape_expand(\\n\\t))
|
|
}
|
|
contains(DEFINES,USB_CONTROLLER){
|
|
LIBS += -L../hidapi/windows/x64/debug -lhidapi
|
|
}
|
|
} else {
|
|
LIBS += -L../opus/win32/VS2015/win32/DebugDLL/
|
|
LIBS += -L../qcustomplot/win32 -lqcustomplotd2
|
|
LIBS += -L../portaudio/msvc/Win32/Debug/ -lportaudio_x86
|
|
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\qcustomplot\win32\qcustomplotd2.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\portaudio\msvc\win32\Debug\portaudio_x86.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\hidapi\windows\Debug\hidapi.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\opus\win32\VS2015\win32\DebugDLL\opus-0.dll wfview-debug $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c xcopy /s/y ..\wfview\rigs\*.* wfview-debug\rigs\*.* $$escape_expand(\\n\\t))
|
|
contains(DEFINES, FTDI_SUPPORT) {
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\LibFT4222-v1.4.8\imports\LibFT4222\dll\i386\LibFT4222.dll wfview-debug $$escape_expand(\\n\\t))
|
|
}
|
|
contains(DEFINES,USB_CONTROLLER){
|
|
LIBS += -L../hidapi/windows/debug -lhidapi
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
|
|
macos:LIBS += -L ../qcustomplot/qcustomplot-sharedlib/build -lqcustomplot
|
|
|
|
lessThan(QT_MAJOR_VERSION, 6) {
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libQCustomPlot.so/ {print \"-lQCustomPlot\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplot2.so/ {print \"-lqcustomplot2\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplot.so/ {print \"-lqcustomplot\"}'")
|
|
} else {
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libQCustomPlotQt6.so/ {print \"-lQCustomPlotQt6\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplot2qt6.so/ {print \"-lqcustomplot2qt6\"}'")
|
|
linux:LIBS += $$system("/sbin/ldconfig -p | awk '/libqcustomplotqt6.so/ {print \"-lqcustomplotqt6\"}'")
|
|
}
|
|
win32 {
|
|
contains(QMAKE_TARGET.arch, x86_64) {
|
|
LIBS += -L../opus/win32/VS2015/x64/ReleaseDLL/
|
|
LIBS += -L../qcustomplot/x64 -lqcustomplot2
|
|
LIBS += -L../portaudio/msvc/X64/Release/ -lportaudio_x64
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\qcustomplot\x64\qcustomplot2.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\portaudio\msvc\x64\Release\portaudio_x64.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\hidapi\windows\X64\Release\hidapi.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\opus\win32\VS2015\x64\ReleaseDLL\opus-0.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c xcopy /s/y ..\wfview\rigs\*.* wfview-release\rigs\*.* $$escape_expand(\\n\\t))
|
|
contains(DEFINES, FTDI_SUPPORT) {
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\LibFT4222-v1.4.8\imports\LibFT4222\dll\amd64\LibFT4222-64.dll wfview-release $$escape_expand(\\n\\t))
|
|
}
|
|
contains(DEFINES,USB_CONTROLLER){
|
|
LIBS += -L../hidapi/windows/x64/release -lhidapi
|
|
}
|
|
} else {
|
|
LIBS += -L../opus/win32/VS2015/win32/ReleaseDLL/
|
|
LIBS += -L../qcustomplot/win32 -lqcustomplot2
|
|
LIBS += -L../portaudio/msvc/Win32/Release/ -lportaudio_x86
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\qcustomplot\win32\qcustomplot2.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\portaudio\msvc\win32\Release\portaudio_x86.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\hidapi\windows\Release\hidapi.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\opus\win32\VS2015\win32\ReleaseDLL\opus-0.dll wfview-release $$escape_expand(\\n\\t))
|
|
QMAKE_POST_LINK +=$$quote(cmd /c xcopy /s/y ..\wfview\rigs\*.* wfview-release\rigs\*.* $$escape_expand(\\n\\t))
|
|
contains(DEFINES, FTDI_SUPPORT) {
|
|
QMAKE_POST_LINK +=$$quote(cmd /c copy /y ..\LibFT4222-v1.4.8\imports\LibFT4222\dll\i386\LibFT4222.dll wfview-release $$escape_expand(\\n\\t))
|
|
}
|
|
contains(DEFINES,USB_CONTROLLER){
|
|
win32:LIBS += -L../hidapi/windows/release -lhidapi
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
contains(DEFINES,USB_CONTROLLER){
|
|
linux:LIBS += -L./ -lhidapi-libusb
|
|
macx:LIBS += -lhidapi
|
|
win32:INCLUDEPATH += ../hidapi/hidapi
|
|
}
|
|
|
|
!win32:LIBS += -L./ -lopus
|
|
|
|
win32:LIBS += -lopus -lole32 -luser32
|
|
|
|
#contains(DEFINES,FTDI_SUPPORT){
|
|
# !win32:LIBS += -lft4222
|
|
#}
|
|
|
|
#macx:SOURCES += ../qcustomplot/qcustomplot.cpp
|
|
#macx:HEADERS += ../qcustomplot/qcustomplot.h
|
|
|
|
win32:INCLUDEPATH += ../qcustomplot
|
|
win32:INCLUDEPATH += ../hidapi/hidapi
|
|
|
|
#contains(DEFINES,FTDI_SUPPORT){
|
|
# win32:INCLUDEPATH += ../LibFT4222-v1.4.7\imports\LibFT4222\inc
|
|
# win32:INCLUDEPATH += ../LibFT4222-v1.4.7\imports\ftd2xx
|
|
#}
|
|
|
|
!linux:INCLUDEPATH += ../opus/include
|
|
!linux:INCLUDEPATH += ../eigen
|
|
!linux:INCLUDEPATH += ../r8brain-free-src
|
|
|
|
INCLUDEPATH += include
|
|
INCLUDEPATH += src/audio
|
|
INCLUDEPATH += src/audio/plugins
|
|
INCLUDEPATH += src/audio/pocketfft
|
|
INCLUDEPATH += src/audio/resampler
|
|
INCLUDEPATH += src/audio/speexdspmini/src
|
|
INCLUDEPATH += src/audio/speexdspmini/include
|
|
INCLUDEPATH += src/audio/anr
|
|
INCLUDEPATH += src
|
|
|
|
# speexdspmini: self-contained Speex preprocessor (no system libspeexdsp needed)
|
|
DEFINES += FLOATING_POINT
|
|
DEFINES += USE_KISS_FFT
|
|
DEFINES += "EXPORT="
|
|
|
|
SOURCES += \
|
|
src/aboutbox.cpp \
|
|
src/audio/adpcm/adpcm-dns.c \
|
|
src/audio/adpcm/adpcm-lib.c \
|
|
src/audio/audioconverter.cpp \
|
|
src/audio/audiodevices.cpp \
|
|
src/audio/audiohandlerbase.cpp \
|
|
src/audio/plugins/dyson_compress.cpp \
|
|
src/audio/plugins/mbeq.cpp \
|
|
src/audio/plugins/noisegate.cpp \
|
|
src/audio/plugins/triple_para.cpp \
|
|
src/audio/pocketfft/pocketfft.c \
|
|
src/audio/spectrumwidget.cpp \
|
|
src/audio/txaudioprocessor.cpp \
|
|
src/audio/rxaudioprocessor.cpp \
|
|
src/audio/anr/loguru.cpp \
|
|
src/audio/anr/NoiseReduction.cpp \
|
|
src/audio/anr/RealFFTf.cpp \
|
|
src/audio/anr/InputTrack.cpp \
|
|
src/audio/anr/OutputTrack.cpp \
|
|
src/audio/speexdspmini/src/preprocess.c \
|
|
src/audio/speexdspmini/src/fftwrap.c \
|
|
src/audio/speexdspmini/src/filterbank.c \
|
|
src/audio/speexdspmini/src/kiss_fft.c \
|
|
src/audio/speexdspmini/src/kiss_fftr.c \
|
|
src/txaudioprocessingwidget.cpp \
|
|
src/rxaudioprocessingwidget.cpp \
|
|
src/collapsiblesection.cpp \
|
|
src/audio/audiohandlerpainput.cpp \
|
|
src/audio/audiohandlerpaoutput.cpp \
|
|
src/audio/audiohandlerqtinput.cpp \
|
|
src/audio/audiohandlerqtoutput.cpp \
|
|
src/audio/audiohandlerrtinput.cpp \
|
|
src/audio/audiohandlerrtoutput.cpp \
|
|
src/audio/audiohandlertciinput.cpp \
|
|
src/audio/audiohandlertcioutput.cpp \
|
|
src/audio/resampler/resample.c \
|
|
src/bandbuttons.cpp \
|
|
src/cachingqueue.cpp \
|
|
src/calibrationwindow.cpp \
|
|
src/cluster.cpp \
|
|
src/commhandler.cpp \
|
|
src/controllersetup.cpp \
|
|
src/cwsender.cpp \
|
|
src/cwsidetone.cpp \
|
|
src/database.cpp \
|
|
src/debugwindow.cpp \
|
|
src/firsttimesetup.cpp \
|
|
src/freqctrl.cpp \
|
|
src/freqmemory.cpp \
|
|
src/frequencyinputwidget.cpp \
|
|
src/ft4222handler.cpp \
|
|
src/keyboard.cpp \
|
|
src/logcategories.cpp \
|
|
src/loggingwindow.cpp \
|
|
src/main.cpp \
|
|
src/memories.cpp \
|
|
src/meter.cpp \
|
|
src/pttyhandler.cpp \
|
|
src/clickablelabel.cpp \
|
|
src/qledlabel.cpp \
|
|
src/radio/icomcommander.cpp \
|
|
src/radio/icomserver.cpp \
|
|
src/radio/icomudpaudio.cpp \
|
|
src/radio/icomudpbase.cpp \
|
|
src/radio/icomudpcivdata.cpp \
|
|
src/radio/icomudphandler.cpp \
|
|
src/radio/kenwoodcommander.cpp \
|
|
src/radio/kenwoodserver.cpp \
|
|
src/radio/yaesucommander.cpp \
|
|
src/radio/yaesuserver.cpp \
|
|
src/radio/yaesuudpaudio.cpp \
|
|
src/radio/yaesuudpbase.cpp \
|
|
src/radio/yaesuudpcat.cpp \
|
|
src/radio/yaesuudpcontrol.cpp \
|
|
src/radio/yaesuudpscope.cpp \
|
|
src/receiverwidget.cpp \
|
|
src/repeatersetup.cpp \
|
|
src/rigcommander.cpp \
|
|
src/rigcreator.cpp \
|
|
src/rigctld.cpp \
|
|
src/rigidentities.cpp \
|
|
src/rigserver.cpp \
|
|
src/rtpaudio.cpp \
|
|
src/satellitesetup.cpp \
|
|
src/scrolltest.cpp \
|
|
src/selectradio.cpp \
|
|
src/settingswidget.cpp \
|
|
src/sidebandchooser.cpp \
|
|
src/tablewidget.cpp \
|
|
src/tciserver.cpp \
|
|
src/tcpserver.cpp \
|
|
src/usbcontroller.cpp \
|
|
src/wfmain.cpp
|
|
|
|
HEADERS += \
|
|
src/audio/adpcm/adpcm-lib.h \
|
|
src/audio/resampler/resample_neon.h \
|
|
src/audio/resampler/speex_resampler.h \
|
|
src/audio/resampler/arch.h \
|
|
src/audio/resampler/resample_sse.h \
|
|
include/aboutbox.h \
|
|
include/spectrumwidget.h \
|
|
include/audioconverter.h \
|
|
include/audiodevices.h \
|
|
include/audiohandler.h \
|
|
include/audiohandlerbase.h \
|
|
include/audioprocessingwidget.h \
|
|
include/txaudioprocessingwidget.h \
|
|
include/txaudioprocessor.h \
|
|
include/rxaudioprocessor.h \
|
|
include/rxaudioprocessingwidget.h \
|
|
include/collapsiblesection.h \
|
|
src/audio/speexnrprocessor.h \
|
|
src/audio/anrnrprocessor.h \
|
|
src/audio/plugins/dysoncompress.h \
|
|
src/audio/plugins/mbeq.h \
|
|
src/audio/plugins/noisegate.h \
|
|
src/audio/plugins/triple_para.h \
|
|
include/audiohandlerpainput.h \
|
|
include/audiohandlerpaoutput.h \
|
|
include/audiohandlerqtinput.h \
|
|
include/audiohandlerqtoutput.h \
|
|
include/audiohandlerrtinput.h \
|
|
include/audiohandlerrtoutput.h \
|
|
include/audiohandlertciinput.h \
|
|
include/audiohandlertcioutput.h \
|
|
include/audiotaper.h \
|
|
include/bandbuttons.h \
|
|
include/bytering.h \
|
|
include/cachingqueue.h \
|
|
include/calibrationwindow.h \
|
|
include/cluster.h \
|
|
include/colorprefs.h \
|
|
include/commhandler.h \
|
|
include/controllersetup.h \
|
|
include/cwsender.h \
|
|
include/cwsidetone.h \
|
|
include/database.h \
|
|
include/debugwindow.h \
|
|
include/firsttimesetup.h \
|
|
include/freqctrl.h \
|
|
include/freqmemory.h \
|
|
include/frequencyinputwidget.h \
|
|
include/ft4222handler.h \
|
|
include/icomcommander.h \
|
|
include/icomserver.h \
|
|
include/icomudpaudio.h \
|
|
include/icomudpbase.h \
|
|
include/icomudpcivdata.h \
|
|
include/icomudphandler.h \
|
|
include/kenwoodcommander.h \
|
|
include/kenwoodserver.h \
|
|
include/keyboard.h \
|
|
include/logcategories.h \
|
|
include/loggingwindow.h \
|
|
include/memories.h \
|
|
include/meter.h \
|
|
include/packettypes.h \
|
|
include/prefs.h \
|
|
include/printhex.h \
|
|
include/pttyhandler.h \
|
|
include/clickablelabel.h \
|
|
include/qledlabel.h \
|
|
include/receiverwidget.h \
|
|
include/repeaterattributes.h \
|
|
include/repeatersetup.h \
|
|
include/rigcommander.h \
|
|
include/rigcreator.h \
|
|
include/rigctld.h \
|
|
include/rigidentities.h \
|
|
include/rigserver.h \
|
|
include/rigstate.h \
|
|
include/rtpaudio.h \
|
|
include/satellitesetup.h \
|
|
include/scrolltest.h \
|
|
include/selectradio.h \
|
|
include/settingswidget.h \
|
|
include/sidebandchooser.h \
|
|
include/tablewidget.h \
|
|
include/tciserver.h \
|
|
include/tcpserver.h \
|
|
include/usbcontroller.h \
|
|
include/wfmain.h \
|
|
include/wfviewtypes.h \
|
|
include/yaesucommander.h \
|
|
include/yaesuserver.h \
|
|
include/yaesuudpaudio.h \
|
|
include/yaesuudpbase.h \
|
|
include/yaesuudpcat.h \
|
|
include/yaesuudpcontrol.h \
|
|
include/yaesuudpscope.h \
|
|
|
|
|
|
FORMS += \
|
|
src/wfmain.ui \
|
|
src/bandbuttons.ui \
|
|
src/calibrationwindow.ui \
|
|
src/cwsender.ui \
|
|
src/firsttimesetup.ui \
|
|
src/frequencyinputwidget.ui \
|
|
src/debugwindow.ui \
|
|
src/loggingwindow.ui \
|
|
src/memories.ui \
|
|
src/rigcreator.ui \
|
|
src/satellitesetup.ui \
|
|
src/selectradio.ui \
|
|
src/repeatersetup.ui \
|
|
src/settingswidget.ui \
|
|
src/controllersetup.ui \
|
|
src/aboutbox.ui
|
|
|
|
DISTFILES += \
|
|
src/audio/adpcm/CMakeLists.txt \
|
|
src/audio/adpcm/README.md \
|
|
src/audio/adpcm/library.properties \
|
|
src/audio/adpcm/license.txt \
|
|
src/audio/resampler/COPYING
|
|
|