Add sample qml application
[staging/HomeScreen.git] / sample-qml / sample-qml.pro
1 TEMPLATE = app
2
3 QT += qml quick
4 CONFIG += c++11
5
6 SOURCES += main.cpp \
7     calledbyqml.cpp
8
9 RESOURCES += qml.qrc
10
11 # Additional import path used to resolve QML modules in Qt Creator's code model
12 QML_IMPORT_PATH =
13
14 INCLUDEPATH += $$PWD/../libhomescreen/include/
15
16 LIBS += -L$$OUT_PWD/../libhomescreen -lhomescreen
17
18 # Default rules for deployment.
19 include(deployment.pri)
20
21 HEADERS += \
22     calledbyqml.h