mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
d44d3055c7
Update languages from transiflex. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6402 b45a01b8-16f6-495d-af2f-9b41ad6348cc
79 lines
2.0 KiB
Prolog
79 lines
2.0 KiB
Prolog
!include("../Common/retroshare_plugin.pri"): error("Could not include file ../Common/retroshare_plugin.pri")
|
|
|
|
exists($$[QMAKE_MKSPECS]/features/mobility.prf) {
|
|
CONFIG += mobility
|
|
} else {
|
|
QT += multimedia
|
|
}
|
|
CONFIG += qt uic qrc resources
|
|
MOBILITY = multimedia
|
|
|
|
INCLUDEPATH += ../../retroshare-gui/src/temp/ui ../../libretroshare/src
|
|
|
|
#################################### Windows #####################################
|
|
|
|
win32 {
|
|
# Speex
|
|
INCLUDEPATH += ../../../speex-1.2rc1/include
|
|
}
|
|
|
|
QMAKE_CXXFLAGS *= -Wall
|
|
|
|
SOURCES = services/p3vors.cc \
|
|
services/rsvoipitems.cc \
|
|
gui/AudioInputConfig.cpp \
|
|
gui/AudioStats.cpp \
|
|
gui/AudioWizard.cpp \
|
|
gui/SpeexProcessor.cpp \
|
|
gui/audiodevicehelper.cpp \
|
|
gui/VoipStatistics.cpp \
|
|
gui/AudioPopupChatDialog.cpp \
|
|
gui/PluginGUIHandler.cpp \
|
|
gui/PluginNotifier.cpp \
|
|
VOIPPlugin.cpp
|
|
|
|
HEADERS = services/p3vors.h \
|
|
services/rsvoipitems.h \
|
|
gui/AudioInputConfig.h \
|
|
gui/AudioStats.h \
|
|
gui/AudioWizard.h \
|
|
gui/SpeexProcessor.h \
|
|
gui/audiodevicehelper.h \
|
|
gui/VoipStatistics.h \
|
|
gui/AudioPopupChatDialog.h \
|
|
gui/PluginGUIHandler.h \
|
|
gui/PluginNotifier.h \
|
|
interface/rsvoip.h \
|
|
VOIPPlugin.h
|
|
|
|
FORMS = gui/AudioInputConfig.ui \
|
|
gui/AudioStats.ui \
|
|
gui/VoipStatistics.ui \
|
|
gui/AudioWizard.ui
|
|
|
|
TARGET = VOIP
|
|
|
|
RESOURCES = gui/VOIP_images.qrc lang/VOIP_lang.qrc
|
|
|
|
TRANSLATIONS += \
|
|
lang/VOIP_cs.ts \
|
|
lang/VOIP_da.ts \
|
|
lang/VOIP_de.ts \
|
|
lang/VOIP_el.ts \
|
|
lang/VOIP_en.ts \
|
|
lang/VOIP_es.ts \
|
|
lang/VOIP_fi.ts \
|
|
lang/VOIP_fr.ts \
|
|
lang/VOIP_hu.ts \
|
|
lang/VOIP_it.ts \
|
|
lang/VOIP_ja_JP.ts \
|
|
lang/VOIP_ko.ts \
|
|
lang/VOIP_nl.ts \
|
|
lang/VOIP_pl.ts \
|
|
lang/VOIP_ru.ts \
|
|
lang/VOIP_sv.ts \
|
|
lang/VOIP_tr.ts \
|
|
lang/VOIP_zh_CN.ts
|
|
|
|
LIBS += -lspeex -lspeexdsp
|