blob: d086a611850382a4ba8f7ca1c2f5ddea7c7e46bf [file] [log] [blame]
swissChili505de412022-03-24 12:35:08 -07001QT += quick widgets quickcontrols2
swissChili23958ca2022-02-21 19:23:34 -08002QT -= 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 \
swissChilid85daa92022-02-24 15:29:02 -080020 $$PWD/NbRuntime.cpp \
swissChilia44bf722022-04-16 18:41:54 -070021 $$PWD/Notebook.cpp \
22 $$PWD/RecentModel.cpp
swissChili23958ca2022-02-21 19:23:34 -080023
24HEADERS += \
swissChili4b3105a2022-02-22 16:34:39 -080025 $$PWD/Cell.h \
26 $$PWD/CellModel.h \
swissChili25620b02022-02-23 17:15:16 -080027 $$PWD/IdeMain.h \
swissChilid85daa92022-02-24 15:29:02 -080028 $$PWD/NbRuntime.h \
swissChilia44bf722022-04-16 18:41:54 -070029 $$PWD/Notebook.h \
30 $$PWD/RecentModel.h
swissChili23958ca2022-02-21 19:23:34 -080031
32RESOURCES += \
33 $$PWD/resources.qrc
swissChili4b3105a2022-02-22 16:34:39 -080034
35INCLUDEPATH += $$PWD