-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathqSIP.pro
More file actions
72 lines (62 loc) · 1.83 KB
/
qSIP.pro
File metadata and controls
72 lines (62 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#-------------------------------------------------
#
# Project created by QtCreator 2017-07-15T15:13:10
#
#-------------------------------------------------
QT += core gui widgets multimedia
TARGET = qSIP
TEMPLATE = app
CONFIG += c++11
DEFINES += QT_DEPRECATED_WARNINGS
INCLUDEPATH += $$PWD/baresip/include
INCLUDEPATH += $$PWD/re/include
INCLUDEPATH += $$PWD/qSIP
win32 {
LIBS += -L$$PWD/_build -lws2_32 -liphlpapi -lwinmm
CONFIG(release, debug|release):LIBS += -lbaresip -lre -lrem -lportaudio -lspeex -lwebrtc -lgsm -lg722
CONFIG(debug, debug|release):LIBS += -lbaresipd -lred -lremd -lportaudiod -lspeexd -lwebrtcd -lgsmd -lg722d
}
unix {
LIBS += -L$$PWD/_build
CONFIG(release, debug|release):LIBS += -lbaresip -lre -lrem -lportaudio -lspeex -lwebrtc -lgsm -lg722 -ldl -lpthread
CONFIG(debug, debug|release):LIBS += -lbaresipd -lred -lremd -lportaudiod -lspeexd -lwebrtcd -lgsmd -lg722d -ldl -lpthread
}
SOURCES += \
qSIP/main.cpp \
qSIP/MainWindow.cpp \
qSIP/PhoneThread.cpp \
qSIP/joinpath.cpp \
qSIP/MySettings.cpp \
qSIP/SettingsDialog.cpp \
qSIP/SettingAccountForm.cpp \
qSIP/AbstractSettingForm.cpp \
qSIP/misc.cpp \
qSIP/StatusLabel.cpp \
qSIP/PhoneWidget.cpp \
qSIP/ClearButton.cpp \
qSIP/Network.cpp \
qSIP/SettingAudioDeviceForm.cpp
HEADERS += \
qSIP/MainWindow.h \
qSIP/PhoneThread.h \
qSIP/joinpath.h \
qSIP/MySettings.h \
qSIP/SettingsDialog.h \
qSIP/SettingAccountForm.h \
qSIP/AbstractSettingForm.h \
qSIP/misc.h \
qSIP/main.h \
qSIP/Account.h \
qSIP/StatusLabel.h \
qSIP/PhoneWidget.h \
qSIP/ClearButton.h \
qSIP/Network.h \
qSIP/SettingAudioDeviceForm.h
FORMS += \
qSIP/MainWindow.ui \
qSIP/SettingsDialog.ui \
qSIP/SettingAccountForm.ui \
qSIP/PhoneWidget.ui \
qSIP/SettingAudioDeviceForm.ui
RESOURCES += \
qSIP/resources.qrc