aboutsummaryrefslogtreecommitdiffstats
path: root/sample-qml/sample-qml.pro
blob: e26bef67c3d42a2ea6a1c50285ab684e978ba132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
TEMPLATE = app

QT += qml quick
CONFIG += c++11

SOURCES += main.cpp \
    calledbyqml.cpp

RESOURCES += qml.qrc

# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =

INCLUDEPATH += $$PWD/../libhomescreen/include/

LIBS += -L$$OUT_PWD/../libhomescreen -lhomescreen

# Default rules for deployment.
include(deployment.pri)

HEADERS += \
    calledbyqml.h