added basic models and controllers

This commit is contained in:
Anika Raemer 2018-10-19 14:19:19 +02:00
parent 269b48ed9d
commit e401b71788
9 changed files with 222 additions and 2 deletions

View file

@ -3,7 +3,10 @@ TEMPLATE = app
QT += qml quick
CONFIG += c++11
SOURCES += main.cpp
SOURCES += main.cpp \
models/NavigationListModel.cpp \
models/NavigationItemModel.cpp \
controllers/NavigationController.cpp
RESOURCES += qml.qrc
@ -28,3 +31,8 @@ DEFINES += QT_DEPRECATED_WARNINGS
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
models/NavigationListModel.h \
models/NavigationItemModel.h \
controllers/NavigationController.h