added basic models and controllers
This commit is contained in:
parent
269b48ed9d
commit
e401b71788
9 changed files with 222 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue