aboutsummaryrefslogtreecommitdiffstats
path: root/src/src.pri
blob: 08201f5c98743b447eec20d5733842060991b145 (plain)
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
!greaterThan(QT_MAJOR_VERSION, 4):error("You need at least Qt5 to build this application")

QT *= quick quick-private qml-private network
CONFIG *= c++11

INCLUDEPATH += $${PWD}
DEFINES += NO_LIBRSYNC

SOURCES += \
    $$PWD/watcher.cpp \
    $$PWD/livehubengine.cpp \
    $$PWD/livenodeengine.cpp \
    $$PWD/qmlhelper.cpp \
    $$PWD/liveruntime.cpp \
    $$PWD/remotepublisher.cpp \
    $$PWD/remotereceiver.cpp \
    $$PWD/imageadapter.cpp \
    $$PWD/contentpluginfactory.cpp \
    $$PWD/logger.cpp \
    $$PWD/remotelogger.cpp \
    $$PWD/logreceiver.cpp \
    $$PWD/fontadapter.cpp

HEADERS += \
    $$PWD/watcher.h \
    $$PWD/livehubengine.h \
    $$PWD/livenodeengine.h \
    $$PWD/qmlhelper.h \
    $$PWD/liveruntime.h \
    $$PWD/remotepublisher.h \
    $$PWD/remotereceiver.h \
    $$PWD/contentadapterinterface.h \
    $$PWD/imageadapter.h \
    $$PWD/contentpluginfactory.h \
    $$PWD/logger.h \
    $$PWD/remotelogger.h \
    $$PWD/logreceiver.h \
    $$PWD/fontadapter.h

OTHER_FILES += \
    $$PWD/livert/error_qt5.qml \
    $$PWD/livert/error_qt5_controls.qml \
    $$PWD/livert/imageviewer_qt5.qml \
    $$PWD/livert/imageviewer_qt5_controls.qml \
    $$PWD/livert/folderview_qt5.qml \
    $$PWD/livert/folderview_qt5_controls.qml \
    $$PWD/livert/fontviewer_qt5.qml \
    $$PWD/livert/fontviewer_qt5_controls.qml

RESOURCES += \
    $$PWD/livert.qrc

include(ipc/ipc.pri)