26 lines
457 B
Prolog
26 lines
457 B
Prolog
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
|