blob: 906b3cbdfcc84766ff0f9df28d8e10cf082968be [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 \
swissChili23958ca2022-02-21 19:23:34 -080019 $$PWD/IdeMain.cpp
20
21HEADERS += \
swissChili4b3105a2022-02-22 16:34:39 -080022 $$PWD/Cell.h \
23 $$PWD/CellModel.h \
swissChili23958ca2022-02-21 19:23:34 -080024 $$PWD/IdeMain.h
25
26RESOURCES += \
27 $$PWD/resources.qrc
swissChili4b3105a2022-02-22 16:34:39 -080028
29INCLUDEPATH += $$PWD