File: quick.pro

package info (click to toggle)
libcommuni 3.7.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,452 kB
  • sloc: cpp: 18,969; sh: 298; ansic: 139; makefile: 13
file content (28 lines) | stat: -rw-r--r-- 791 bytes parent folder | download | duplicates (2)
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
######################################################################
# Communi
######################################################################

TEMPLATE = app
TARGET = quick
DEPENDPATH += .
INCLUDEPATH += .
QT += network quick

lessThan(QT_MAJOR_VERSION, 5)|lessThan(QT_MINOR_VERSION, 2) {
    error(The Qt Quick 2 based example requires Qt 5.2 or newer but Qt $$[QT_VERSION] was detected.)
}

# Input
SOURCES += main.cpp
RESOURCES += quick.qrc
OTHER_FILES += qml/main.qml
OTHER_FILES += qml/BufferListView.qml
OTHER_FILES += qml/ChatPage.qml
OTHER_FILES += qml/ConnectPage.qml
OTHER_FILES += qml/MessageFormatter.qml
OTHER_FILES += qml/TextBrowser.qml
OTHER_FILES += qml/TextEntry.qml
OTHER_FILES += qml/TopicLabel.qml
OTHER_FILES += qml/UserListView.qml

include(../examples.pri)