mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-10 10:33:29 -05:00
Windows build: fixes to compile RTP support
This commit is contained in:
parent
d34ff61032
commit
f3d9f6191e
@ -60,7 +60,6 @@ find_package(OpenGL REQUIRED)
|
||||
find_package(PkgConfig)
|
||||
find_package(Boost REQUIRED)
|
||||
find_package(FFTW3F)
|
||||
find_package(JRTPLib)
|
||||
|
||||
if (NOT BUILD_DEBIAN)
|
||||
find_package(LibDSDcc)
|
||||
|
@ -11,6 +11,7 @@ TEMPLATE = lib
|
||||
TARGET = sdrbase
|
||||
INCLUDEPATH += $$PWD
|
||||
INCLUDEPATH += ../httpserver
|
||||
INCLUDEPATH += ../qrtplib
|
||||
INCLUDEPATH += ../swagger/sdrangel/code/qt5/client
|
||||
|
||||
DEFINES += USE_KISSFFT=1
|
||||
@ -104,6 +105,7 @@ SOURCES += audio/audiodeviceinfo.cpp\
|
||||
util/message.cpp\
|
||||
util/messagequeue.cpp\
|
||||
util/prettyprint.cpp\
|
||||
util/rtpsink.cpp\
|
||||
util/syncmessenger.cpp\
|
||||
util/samplesourceserializer.cpp\
|
||||
util/simpleserializer.cpp\
|
||||
@ -194,6 +196,7 @@ HEADERS += audio/audiodeviceinfo.h\
|
||||
util/message.h\
|
||||
util/messagequeue.h\
|
||||
util/prettyprint.h\
|
||||
util/rtpsink.h\
|
||||
util/syncmessenger.h\
|
||||
util/samplesourceserializer.h\
|
||||
util/simpleserializer.h\
|
||||
@ -205,6 +208,7 @@ HEADERS += audio/audiodeviceinfo.h\
|
||||
|
||||
!macx:LIBS += -L../serialdv/$${build_subdir} -lserialdv
|
||||
LIBS += -L../httpserver/$${build_subdir} -lhttpserver
|
||||
LIBS += -L../qrtplib/$${build_subdir} -lqrtplib
|
||||
LIBS += -L../swagger/$${build_subdir} -lswagger
|
||||
|
||||
RCC_BINARY_SOURCES += resources/res.qrc
|
||||
|
@ -13,6 +13,7 @@ copy mbelib\%1\mbelib.dll %2
|
||||
copy dsdcc\%1\dsdcc.dll %2
|
||||
copy serialdv\%1\serialdv.dll %2
|
||||
copy httpserver\%1\httpserver.dll %2
|
||||
copy qrtplib\%1\qrtplib.dll %2
|
||||
copy swagger\%1\swagger.dll %2
|
||||
copy logging\%1\logging.dll %2
|
||||
copy libhackrf\%1\libhackrf.dll %2
|
||||
|
Loading…
Reference in New Issue
Block a user