uvgrtp-base/kvzrtp.pro

88 lines
2.2 KiB
Prolog
Raw Normal View History

2019-06-03 06:35:19 +00:00
#-------------------------------------------------
#
# Project created by QtCreator 2019-06-03T09:27:47
#
#-------------------------------------------------
QT -= core gui
TARGET = kvzrtp
TEMPLATE = lib
CONFIG += staticlib
2019-06-03 06:35:19 +00:00
DEFINES += KVZRTP_LIBRARY
# 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
2019-11-13 06:08:52 +00:00
QMAKE_CXXFLAGS += -DNDEBUG
INCLUDEPATH += include
2019-08-02 06:42:24 +00:00
2019-06-03 06:35:19 +00:00
SOURCES += \
2019-06-05 06:40:47 +00:00
src/send.cc \
src/lib.cc \
src/frame.cc \
2019-06-20 06:27:00 +00:00
src/mingw_inet.cc \
src/multicast.cc \
src/poll.cc \
src/rtcp.cc \
2019-07-15 08:02:29 +00:00
src/socket.cc \
src/clock.cc \
src/hostname.cc \
2019-08-16 06:11:25 +00:00
src/queue.cc \
src/random.cc \
2019-11-13 06:08:52 +00:00
src/dispatch.cc \
src/runner.cc \
src/sender.cc \
src/receiver.cc \
src/session.cc \
src/rtp.cc \
2020-03-11 05:43:33 +00:00
src/srtp.cc \
src/crypto.cc \
src/media_stream.cc \
src/formats/opus.cc \
src/formats/hevc.cc \
2019-11-13 06:08:52 +00:00
src/formats/hevc_recv_normal.cc \
src/formats/generic.cc \
# src/formats/hevc_recv_optimistic.cc \
2019-06-03 06:35:19 +00:00
HEADERS += \
include/send.hh \
include/rtcp.hh \
include/lib.hh \
include/frame.hh \
include/debug.hh \
include/util.hh \
include/mingw_inet.hh \
include/multicast.hh \
include/poll.hh \
include/rtcp.hh \
include/socket.hh \
include/clock.hh \
include/hostname.hh \
include/queue.hh \
include/random.hh \
include/dispatch.hh \
include/runner.hh \
include/receiver.hh \
include/sender.hh \
include/session.hh \
include/rtp.hh \
include/media_stream.hh \
include/formats/opus.hh \
include/formats/hevc.hh \
include/formats/generic.hh
2019-06-03 06:35:19 +00:00
unix {
target.path = /usr/lib
INSTALLS += target
}