swissChili | 23958ca | 2022-02-21 19:23:34 -0800 | [diff] [blame] | 1 | QT += quick quickcontrols2 |
| 2 | QT -= core |
| 3 | |
swissChili | 4b3105a | 2022-02-22 16:34:39 -0800 | [diff] [blame] | 4 | CONFIG += qmltypes |
swissChili | 23958ca | 2022-02-21 19:23:34 -0800 | [diff] [blame] | 5 | |
| 6 | QML_IMPORT_NAME = sh.swisschili.REFAL |
| 7 | QML_IMPORT_MAJOR_VERSION = 1 |
| 8 | QML_IMPORT_MINOR_VERSION = 0 |
| 9 | |
| 10 | # Additional import path used to resolve QML modules in Qt Creator's code model |
| 11 | QML_IMPORT_PATH = |
| 12 | |
| 13 | # Additional import path used to resolve QML modules just for Qt Quick Designer |
| 14 | QML_DESIGNER_IMPORT_PATH = |
| 15 | |
| 16 | SOURCES += \ |
swissChili | 4b3105a | 2022-02-22 16:34:39 -0800 | [diff] [blame] | 17 | $$PWD/Cell.cpp \ |
| 18 | $$PWD/CellModel.cpp \ |
swissChili | 25620b0 | 2022-02-23 17:15:16 -0800 | [diff] [blame] | 19 | $$PWD/IdeMain.cpp \ |
swissChili | d85daa9 | 2022-02-24 15:29:02 -0800 | [diff] [blame] | 20 | $$PWD/NbRuntime.cpp \ |
swissChili | 25620b0 | 2022-02-23 17:15:16 -0800 | [diff] [blame] | 21 | $$PWD/Notebook.cpp |
swissChili | 23958ca | 2022-02-21 19:23:34 -0800 | [diff] [blame] | 22 | |
| 23 | HEADERS += \ |
swissChili | 4b3105a | 2022-02-22 16:34:39 -0800 | [diff] [blame] | 24 | $$PWD/Cell.h \ |
| 25 | $$PWD/CellModel.h \ |
swissChili | 25620b0 | 2022-02-23 17:15:16 -0800 | [diff] [blame] | 26 | $$PWD/IdeMain.h \ |
swissChili | d85daa9 | 2022-02-24 15:29:02 -0800 | [diff] [blame] | 27 | $$PWD/NbRuntime.h \ |
swissChili | 25620b0 | 2022-02-23 17:15:16 -0800 | [diff] [blame] | 28 | $$PWD/Notebook.h |
swissChili | 23958ca | 2022-02-21 19:23:34 -0800 | [diff] [blame] | 29 | |
| 30 | RESOURCES += \ |
| 31 | $$PWD/resources.qrc |
swissChili | 4b3105a | 2022-02-22 16:34:39 -0800 | [diff] [blame] | 32 | |
| 33 | INCLUDEPATH += $$PWD |