aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/eventcalendar/eventcalendar.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols/eventcalendar/eventcalendar.pro')
-rw-r--r--examples/quickcontrols/eventcalendar/eventcalendar.pro25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/quickcontrols/eventcalendar/eventcalendar.pro b/examples/quickcontrols/eventcalendar/eventcalendar.pro
new file mode 100644
index 0000000000..742c5d09e8
--- /dev/null
+++ b/examples/quickcontrols/eventcalendar/eventcalendar.pro
@@ -0,0 +1,25 @@
+TEMPLATE = app
+TARGET = eventcalendar
+QT += sql qml
+
+CONFIG += qmltypes
+QML_IMPORT_NAME = App
+QML_IMPORT_MAJOR_VERSION = 1
+
+HEADERS += \
+ event.h \
+ eventmodel.h \
+ sqleventdatabase.h
+
+SOURCES += \
+ eventcalendar.cpp \
+ eventmodel.cpp \
+ sqleventdatabase.cpp
+
+RESOURCES += \
+ eventcalendar.qml \
+ MonthGridDelegate.qml \
+ qtquickcontrols2.conf
+
+target.path = $$[QT_INSTALL_EXAMPLES]/quickcalendar/eventcalendar
+INSTALLS += target