forked from qt-creator/qt-creator
This is a typical test case for mocking cpp types. Change-Id: Ibd76429c3d1190c46a223062d77d676f728fec77 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
23 lines
502 B
Prolog
23 lines
502 B
Prolog
TEMPLATE = app
|
|
|
|
QT += qml quick
|
|
CONFIG += c++11
|
|
|
|
SOURCES += main.cpp \
|
|
mybackendobject.cpp
|
|
|
|
RESOURCES += qml.qrc
|
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
|
### QML_IMPORT_PATH = $$PWD/mockups
|
|
QML_DESIGNER_IMPORT_PATH = $$PWD/mockups
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
HEADERS += \
|
|
mybackenmodel.h \
|
|
mybackendobject.h
|