Add sample qml application
[staging/HomeScreen.git] / sample-qml / sample-qml.pro
diff --git a/sample-qml/sample-qml.pro b/sample-qml/sample-qml.pro
new file mode 100644 (file)
index 0000000..e26bef6
--- /dev/null
@@ -0,0 +1,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