blob: f656fd19189704e512293e1abfa530ede0230334 [file] [log] [blame]
swissChili23958ca2022-02-21 19:23:34 -08001QT += quick quickcontrols2
2QT -= core
3
swissChili4b3105a2022-02-22 16:34:39 -08004CONFIG += qmltypes
swissChili23958ca2022-02-21 19:23:34 -08005
6QML_IMPORT_NAME = sh.swisschili.REFAL
7QML_IMPORT_MAJOR_VERSION = 1
8QML_IMPORT_MINOR_VERSION = 0
9
10# Additional import path used to resolve QML modules in Qt Creator's code model
11QML_IMPORT_PATH =
12
13# Additional import path used to resolve QML modules just for Qt Quick Designer
14QML_DESIGNER_IMPORT_PATH =
15
16SOURCES += \
swissChili4b3105a2022-02-22 16:34:39 -080017 $$PWD/Cell.cpp \
18 $$PWD/CellModel.cpp \
swissChili25620b02022-02-23 17:15:16 -080019 $$PWD/IdeMain.cpp \
20 $$PWD/Notebook.cpp
swissChili23958ca2022-02-21 19:23:34 -080021
22HEADERS += \
swissChili4b3105a2022-02-22 16:34:39 -080023 $$PWD/Cell.h \
24 $$PWD/CellModel.h \
swissChili25620b02022-02-23 17:15:16 -080025 $$PWD/IdeMain.h \
26 $$PWD/Notebook.h
swissChili23958ca2022-02-21 19:23:34 -080027
28RESOURCES += \
29 $$PWD/resources.qrc
swissChili4b3105a2022-02-22 16:34:39 -080030
31INCLUDEPATH += $$PWD