forked from AgoraIO/Basic-Video-Call
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenVideoCall.pro
76 lines (64 loc) · 1.56 KB
/
OpenVideoCall.pro
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
73
74
75
76
#-------------------------------------------------
#
# Project created by QtCreator 2019-09-24T10:52:31
#
#-------------------------------------------------
QT += core gui quickwidgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = OpenVideoCall
TEMPLATE = app
SOURCES += main.cpp \
agoraconfig.cpp \
openvideocall.cpp \
avdevice.cpp \
agoraobject.cpp \
nettesting.cpp \
nettestresult.cpp \
nettestdetail.cpp \
agorawindowmanager.cpp \
enterroom.cpp \
inroom.cpp
HEADERS += \
agoraconfig.h \
openvideocall.h \
avdevice.h \
agoraobject.h \
nettesting.h \
nettestresult.h \
nettestdetail.h \
agorawindowmanager.h \
enterroom.h \
inroom.h
FORMS += \
openvideocall.ui \
avdevice.ui \
nettesting.ui \
nettestresult.ui \
nettestdetail.ui \
enterroom.ui \
inroom.ui
RESOURCES += \
openvideocall.qrc
RC_FILE = openvideocall.rc
DISTFILES += \
uiresource/OVC-win-more users.jpg \
uiresource/icon-back hover.png \
uiresource/icon-camera hover.png \
uiresource/icon-camera off.png \
uiresource/icon-close hover.png \
uiresource/icon-hang up hover.png \
uiresource/icon-hang up.png \
uiresource/icon-micorophone hover.png \
uiresource/icon-micorophone off.png \
uiresource/icon-setting hover.png \
openvideocall.rc
win32: {
INCLUDEPATH += $$PWD/sdk/include
LIBS += -L$$PWD/sdk/lib/ -lagora_rtc_sdk
LIBS += User32.LIB
}
win64: {
INCLUDEPATH += $$PWD/sdk/include
LIBS += -L$$PWD/sdk/lib/ -lagora_rtc_sdk
LIBS += User32.LIB
}