blob: bebdf360680b1240f43491a9ca4fac58b4eaae24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
TARGET = $$qtLibraryTarget(QtIfRemoteExample)
TEMPLATE = lib
DESTDIR = ..
#! [0]
QT_FOR_CONFIG += interfaceframework
!qtConfig(ifcodegen): error("No ifcodegen available")
#! [0]
QT += interfaceframework qml quick
#! [1]
CONFIG += ifcodegen
IFCODEGEN_SOURCES = ../example-remote.qface
#! [1]
CONFIG += install_ok # Do not cargo-cult this!
target.path = $$[QT_INSTALL_EXAMPLES]/interfaceframework/qface-remote
INSTALLS += target
|