blob: 69856d7c44966fe7583ff2d54590a1e665744dec [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 \
swissChili25620b02022-02-23 17:15:16 -080021 $$PWD/Notebook.cpp
swissChili23958ca2022-02-21 19:23:34 -080022
23HEADERS += \
swissChili4b3105a2022-02-22 16:34:39 -080024 $$PWD/Cell.h \
25 $$PWD/CellModel.h \
swissChili25620b02022-02-23 17:15:16 -080026 $$PWD/IdeMain.h \
swissChilid85daa92022-02-24 15:29:02 -080027 $$PWD/NbRuntime.h \
swissChili25620b02022-02-23 17:15:16 -080028 $$PWD/Notebook.h
swissChili23958ca2022-02-21 19:23:34 -080029
30RESOURCES += \
31 $$PWD/resources.qrc
swissChili4b3105a2022-02-22 16:34:39 -080032
33INCLUDEPATH += $$PWD