qgcvideo.pro 877 Bytes
Newer Older
1 2 3
# Video streaming application for simple UDP direct byte streaming


4
QT       += svg network opengl
5 6 7 8 9

TEMPLATE = app
TARGET = qgcvideo

BASEDIR = .
fattony's avatar
fattony committed
10

11 12 13
LANGUAGE = C++


fattony's avatar
fattony committed
14

15 16 17 18 19 20 21 22

macx:DESTDIR = $$BASEDIR/bin/mac

INCLUDEPATH += . \
    src \
    src/ui \
    src/comm \
    include/ui \
23
    src/apps/qgcvideo \
24 25 26

# Input

27
HEADERS += \
28 29 30 31
    src/comm/UDPLink.h \
    src/comm/LinkInterface.h \
    src/comm/LinkManager.h \
    src/QGC.h \
32 33 34
    src/apps/qgcvideo/QGCVideoMainWindow.h \
    src/apps/qgcvideo/QGCVideoApp.h \
    src/apps/qgcvideo/QGCVideoWidget.h
35 36

SOURCES += \
37 38 39
    src/comm/UDPLink.cc \
    src/comm/LinkManager.cc \
    src/QGC.cc \
40 41
    src/apps/qgcvideo/main.cc \
    src/apps/qgcvideo/QGCVideoMainWindow.cc \
42
    src/apps/qgcvideo/QGCVideoApp.cc \
43
    src/apps/qgcvideo/QGCVideoWidget.cc
44 45

FORMS += \
46
    src/apps/qgcvideo/QGCVideoMainWindow.ui
47

LM's avatar
LM committed
48
RESOURCES = qgroundcontrol.qrc