summaryrefslogtreecommitdiffstats
path: root/examples/remoteobjects/cbor_python/qt_source/qt_source.pro
blob: 16895ee6651063c59e47d64906a38f5506bffde3 (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
QT += remoteobjects

TARGET = QtSource
CONFIG += cmdline
CONFIG   -= app_bundle

REPC_SOURCE += Simple.rep

DISTFILES += \
    Simple.rep

SOURCES += main.cpp \
           simple.cpp

HEADERS += simple.h

OTHER_FILES += $$REPC_SOURCE

repfiles.files = $$REPC_SOURCE
repfiles.path += $$[QT_INSTALL_EXAMPLES]/remoteobjects/cbor_python/qt_source
pythonfiles.files = py_replica/py_replica.py
pythonfiles.path += $$[QT_INSTALL_EXAMPLES]/remoteobjects/cbor_python/py_replica

target.path = $$[QT_INSTALL_EXAMPLES]/remoteobjects/cbor_python/qt_source

INSTALLS += target repfiles pythonfiles