2012-02-15 16:17:18 -05:00
|
|
|
!include("../Common/retroshare_plugin.pri"): error("Could not include file ../Common/retroshare_plugin.pri")
|
|
|
|
|
2013-10-19 20:56:34 -04:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
|
|
# Qt 5
|
|
|
|
QT += widgets
|
|
|
|
}
|
|
|
|
|
2013-03-04 07:34:45 -05:00
|
|
|
exists($$[QMAKE_MKSPECS]/features/mobility.prf) {
|
|
|
|
CONFIG += mobility
|
|
|
|
} else {
|
|
|
|
QT += multimedia
|
|
|
|
}
|
2012-02-15 16:17:18 -05:00
|
|
|
CONFIG += qt uic qrc resources
|
|
|
|
MOBILITY = multimedia
|
|
|
|
|
2015-01-12 18:14:35 -05:00
|
|
|
DEPENDPATH += ../../retroshare-gui/src/temp/ui ../../libretroshare/src
|
2012-08-30 12:14:55 -04:00
|
|
|
INCLUDEPATH += ../../retroshare-gui/src/temp/ui ../../libretroshare/src
|
2012-02-25 07:18:40 -05:00
|
|
|
|
2015-12-24 12:54:45 -05:00
|
|
|
#################################### Linux #####################################
|
2012-02-28 16:59:01 -05:00
|
|
|
|
2014-07-15 17:12:10 -04:00
|
|
|
linux-* {
|
2015-09-04 09:46:00 -04:00
|
|
|
CONFIG += link_pkgconfig
|
|
|
|
|
|
|
|
PKGCONFIG += libavcodec libavutil
|
2015-09-05 17:48:24 -04:00
|
|
|
PKGCONFIG += speex speexdsp
|
2015-09-04 09:46:00 -04:00
|
|
|
PKGCONFIG += opencv
|
2015-09-05 17:48:24 -04:00
|
|
|
} else {
|
|
|
|
LIBS += -lspeex -lspeexdsp -lavcodec -lavutil
|
2014-07-15 17:12:10 -04:00
|
|
|
}
|
|
|
|
|
2015-12-24 12:54:45 -05:00
|
|
|
#################################### Windows #####################################
|
|
|
|
|
2012-02-28 16:59:01 -05:00
|
|
|
win32 {
|
2015-09-03 10:33:50 -04:00
|
|
|
|
2015-10-03 22:08:24 -04:00
|
|
|
DEPENDPATH += . $$INC_DIR
|
|
|
|
INCLUDEPATH += . $$INC_DIR
|
2014-07-15 17:12:10 -04:00
|
|
|
|
2015-10-03 22:08:24 -04:00
|
|
|
OPENCV_VERSION = "249"
|
|
|
|
USE_PRECOMPILED_LIBS =
|
|
|
|
for(lib, LIB_DIR) {
|
|
|
|
#message(Scanning $$lib)
|
|
|
|
exists( $$lib/opencv/libopencv_core249.a) {
|
|
|
|
isEmpty(USE_PRECOMPILED_LIBS) {
|
|
|
|
message(Get pre-compiled opencv 249 libraries here:)
|
|
|
|
message($$lib)
|
|
|
|
LIBS += -L"$$lib/opencv"
|
|
|
|
LIBS += -lopencv_core$$OPENCV_VERSION -lopencv_highgui$$OPENCV_VERSION -lopencv_imgproc$$OPENCV_VERSION
|
|
|
|
USE_PRECOMPILED_LIBS = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exists( $$lib/opencv/libopencv_core.a) {
|
|
|
|
isEmpty(USE_PRECOMPILED_LIBS) {
|
|
|
|
message(Get pre-compiled opencv libraries here:)
|
|
|
|
message($$lib)
|
|
|
|
LIBS += -L"$$lib/opencv"
|
|
|
|
LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
|
|
|
|
USE_PRECOMPILED_LIBS = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exists( $$lib/libopencv_core.dll.a) {
|
|
|
|
isEmpty(USE_PRECOMPILED_LIBS) {
|
|
|
|
message(Get pre-compiled opencv libraries here:)
|
|
|
|
message($$lib)
|
|
|
|
LIBS += -L"$$lib/opencv"
|
|
|
|
LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
|
|
|
|
USE_PRECOMPILED_LIBS = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exists( $$lib/libopencv_videoio.dll.a) {
|
|
|
|
message(videoio found in opencv libraries.)
|
|
|
|
message($$lib)
|
|
|
|
LIBS += -lopencv_videoio
|
|
|
|
}
|
|
|
|
}
|
|
|
|
isEmpty(USE_PRECOMPILED_LIBS) {
|
|
|
|
message(Use system opencv libraries.)
|
|
|
|
LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
|
|
|
|
}
|
|
|
|
LIBS += -lz -lole32 -loleaut32 -luuid -lvfw32 -llibjpeg -llibtiff -llibpng -llibjasper -lIlmImf
|
|
|
|
LIBS += -lavifil32 -lavicap32 -lavcodec -lavutil -lswresample
|
2012-02-28 16:59:01 -05:00
|
|
|
}
|
|
|
|
|
2015-12-24 12:54:45 -05:00
|
|
|
#################################### MacOSX #####################################
|
|
|
|
|
|
|
|
macx {
|
|
|
|
|
|
|
|
DEPENDPATH += . $$INC_DIR
|
|
|
|
INCLUDEPATH += . $$INC_DIR
|
|
|
|
|
|
|
|
#OPENCV_VERSION = "249"
|
|
|
|
USE_PRECOMPILED_LIBS =
|
|
|
|
for(lib, LIB_DIR) {
|
|
|
|
#message(Scanning $$lib)
|
|
|
|
exists( $$lib/opencv/libopencv_core*.dylib) {
|
|
|
|
isEmpty(USE_PRECOMPILED_LIBS) {
|
|
|
|
message(Get pre-compiled opencv libraries here:)
|
|
|
|
message($$lib)
|
|
|
|
LIBS += -L"$$lib/opencv"
|
|
|
|
LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
|
|
|
|
USE_PRECOMPILED_LIBS = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exists( $$lib/libopencv_videoio*.dylib) {
|
|
|
|
message(videoio found in opencv libraries.)
|
|
|
|
message($$lib)
|
|
|
|
LIBS += -lopencv_videoio
|
|
|
|
}
|
|
|
|
}
|
|
|
|
isEmpty(USE_PRECOMPILED_LIBS) {
|
|
|
|
message(Use system opencv libraries.)
|
|
|
|
LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
|
|
|
|
}
|
|
|
|
|
|
|
|
error(Missing RetroShare-gui library. Remove Plugins from RetroShare.pro))
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-03 13:14:30 -04:00
|
|
|
# ffmpeg (and libavutil: https://github.com/ffms/ffms2/issues/11)
|
|
|
|
QMAKE_CXXFLAGS += -D__STDC_CONSTANT_MACROS
|
|
|
|
|
2012-02-18 15:30:10 -05:00
|
|
|
QMAKE_CXXFLAGS *= -Wall
|
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
SOURCES = VOIPPlugin.cpp \
|
|
|
|
services/p3VOIP.cc \
|
|
|
|
services/rsVOIPItems.cc \
|
|
|
|
gui/AudioInputConfig.cpp \
|
|
|
|
gui/AudioStats.cpp \
|
|
|
|
gui/AudioWizard.cpp \
|
|
|
|
gui/SpeexProcessor.cpp \
|
|
|
|
gui/audiodevicehelper.cpp \
|
|
|
|
gui/VideoProcessor.cpp \
|
|
|
|
gui/QVideoDevice.cpp \
|
2014-07-13 09:57:25 -04:00
|
|
|
gui/VOIPChatWidgetHolder.cpp \
|
2015-05-11 15:40:07 -04:00
|
|
|
gui/VOIPGUIHandler.cpp \
|
2015-05-26 11:19:57 -04:00
|
|
|
gui/VOIPNotify.cpp \
|
|
|
|
gui/VOIPToasterItem.cpp \
|
|
|
|
gui/VOIPToasterNotify.cpp
|
2012-02-19 10:07:47 -05:00
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
HEADERS = VOIPPlugin.h \
|
|
|
|
services/p3VOIP.h \
|
|
|
|
services/rsVOIPItems.h \
|
|
|
|
gui/AudioInputConfig.h \
|
|
|
|
gui/AudioStats.h \
|
|
|
|
gui/AudioWizard.h \
|
|
|
|
gui/SpeexProcessor.h \
|
|
|
|
gui/audiodevicehelper.h \
|
|
|
|
gui/VideoProcessor.h \
|
|
|
|
gui/QVideoDevice.h \
|
|
|
|
gui/VOIPChatWidgetHolder.h \
|
|
|
|
gui/VOIPGUIHandler.h \
|
|
|
|
gui/VOIPNotify.h \
|
2015-05-26 11:19:57 -04:00
|
|
|
gui/VOIPToasterItem.h \
|
|
|
|
gui/VOIPToasterNotify.h \
|
2015-05-11 15:40:07 -04:00
|
|
|
interface/rsVOIP.h
|
2012-02-19 10:07:47 -05:00
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
FORMS = gui/AudioInputConfig.ui \
|
|
|
|
gui/AudioStats.ui \
|
2015-05-26 11:19:57 -04:00
|
|
|
gui/AudioWizard.ui \
|
|
|
|
gui/VOIPToasterItem.ui
|
2012-02-15 16:17:18 -05:00
|
|
|
|
|
|
|
TARGET = VOIP
|
|
|
|
|
2015-06-28 06:11:47 -04:00
|
|
|
RESOURCES = gui/VOIP_images.qrc lang/VOIP_lang.qrc qss/VOIP_qss.qrc
|
2012-09-24 19:41:32 -04:00
|
|
|
|
2012-09-29 20:49:39 -04:00
|
|
|
TRANSLATIONS += \
|
2013-12-13 10:08:36 -05:00
|
|
|
lang/VOIP_ca_ES.ts \
|
2012-11-21 17:10:39 -05:00
|
|
|
lang/VOIP_cs.ts \
|
|
|
|
lang/VOIP_da.ts \
|
2012-09-24 19:41:32 -04:00
|
|
|
lang/VOIP_de.ts \
|
2013-06-04 19:39:07 -04:00
|
|
|
lang/VOIP_el.ts \
|
2012-11-21 17:10:39 -05:00
|
|
|
lang/VOIP_en.ts \
|
2012-09-29 20:49:39 -04:00
|
|
|
lang/VOIP_es.ts \
|
2012-11-21 17:10:39 -05:00
|
|
|
lang/VOIP_fi.ts \
|
|
|
|
lang/VOIP_fr.ts \
|
|
|
|
lang/VOIP_hu.ts \
|
2012-12-06 09:31:40 -05:00
|
|
|
lang/VOIP_it.ts \
|
2012-11-21 17:10:39 -05:00
|
|
|
lang/VOIP_ja_JP.ts \
|
|
|
|
lang/VOIP_ko.ts \
|
2013-06-04 19:39:07 -04:00
|
|
|
lang/VOIP_nl.ts \
|
2012-11-21 17:10:39 -05:00
|
|
|
lang/VOIP_pl.ts \
|
|
|
|
lang/VOIP_ru.ts \
|
|
|
|
lang/VOIP_sv.ts \
|
2012-09-29 20:49:39 -04:00
|
|
|
lang/VOIP_tr.ts \
|
2012-11-21 17:10:39 -05:00
|
|
|
lang/VOIP_zh_CN.ts
|