File: clientapp.pro

package info (click to toggle)
qt6-remoteobjects 6.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,812 kB
  • sloc: cpp: 20,883; sh: 29; makefile: 26
file content (35 lines) | stat: -rw-r--r-- 614 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
29
30
31
32
33
34
35
TEMPLATE = app
TARGET  = clientapp

QT += remoteobjects quick

CONFIG += qmltypes

REPC_REPLICA += $$PWD/../timemodel.rep

QML_IMPORT_NAME = TimeExample
QML_IMPORT_MAJOR_VERSION = 1

SOURCES += main.cpp
HEADERS += plugin.h

qml_resources.files = \
    qmldir \
    Plugins.qml \
    plugins0.qml \
    plugins1.qml \
    plugins2.qml \
    Clock.qml \
    center.png \
    clock.png \
    hour.png \
    minute.png

qml_resources.prefix = /qt/qml/TimeExample

RESOURCES += qml_resources

contains(QT_CONFIG, c++11): CONFIG += c++11

target.path = $$[QT_INSTALL_EXAMPLES]/remoteobjects/clientapp
INSTALLS += target