forked from ultravideo/uvgRTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuvgRTP.pro
126 lines (112 loc) · 2.87 KB
/
uvgRTP.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#-------------------------------------------------
#
# Project created by QtCreator 2019-06-03T09:27:47
#
#-------------------------------------------------
QT -= core gui
TARGET = uvgrtp
TEMPLATE = lib
CONFIG += staticlib c++11
DEFINES += UVGRTP_LIBRARY
VERSION_MAJOR = 2
VERSION_MINOR = 0
VERSION_PATCH = 1
DEFINES += "uvgrtp_VERSION_MAJOR=$$VERSION_MAJOR"\
"uvgrtp_VERSION_MINOR=$$VERSION_MINOR"\
"uvgrtp_VERSION_PATCH=$$VERSION_PATCH"
VERSION = $${VERSION_MAJOR}.$${VERSION_MINOR}.$${VERSION_PATCH}
DEFINES += uvgrtp_VERSION=\\\"$${VERSION}\\\"
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
QMAKE_CXXFLAGS += -DNDEBUG
INCLUDEPATH += include
SOURCES += \
src/clock.cc \
src/crypto.cc \
src/dispatch.cc \
src/frame.cc \
src/hostname.cc \
src/lib.cc \
src/media_stream.cc \
src/mingw_inet.cc \
src/multicast.cc \
src/pkt_dispatch.cc \
src/poll.cc \
src/queue.cc \
src/random.cc \
src/rtcp.cc \
src/rtp.cc \
src/runner.cc \
src/session.cc \
src/socket.cc \
src/holepuncher.cc \
src/version_qt.cpp \
src/zrtp.cc \
src/formats/media.cc \
src/formats/h26x.cc \
src/formats/h264.cc \
src/formats/h265.cc \
src/formats/h266.cc \
src/zrtp/zrtp_message.cc \
src/zrtp/zrtp_receiver.cc \
src/zrtp/hello.cc \
src/zrtp/hello_ack.cc \
src/zrtp/commit.cc \
src/zrtp/dh_kxchng.cc \
src/zrtp/confirm.cc \
src/zrtp/confack.cc \
src/zrtp/error.cc \
src/srtp/base.cc \
src/srtp/srtp.cc \
src/srtp/srtcp.cc \
HEADERS += \
include/clock.hh \
include/crypto.hh \
include/debug.hh \
include/frame.hh \
include/lib.hh \
include/media_stream.hh \
include/rtcp.hh \
include/runner.hh \
include/session.hh \
include/socket.hh \
include/util.hh \
include/version.hh \
src/dispatch.hh \
src/holepuncher.hh \
src/hostname.hh \
src/mingw_inet.hh \
src/multicast.hh \
src/pkt_dispatch.hh \
src/poll.hh \
src/queue.hh \
src/random.hh \
src/rtp.hh \
src/zrtp.hh \
src/formats/media.hh \
src/formats/h26x.hh \
src/formats/h264.hh \
src/formats/h265.hh \
src/zrtp/zrtp_receiver.hh \
src/zrtp/zrtp_message.hh \
src/zrtp/hello.hh \
src/zrtp/hello_ack.hh \
src/zrtp/commit.hh \
src/zrtp/dh_kxchng.hh \
src/zrtp/confirm.hh \
src/zrtp/confack.hh \
src/zrtp/error.hh \
src/srtp/base.hh \
src/srtp/srtp.hh \
src/srtp/srtcp.hh \
unix {
target.path = /usr/lib
INSTALLS += target
}