|
| 1 | +QT += core gui |
| 2 | + |
| 3 | +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets dbus network |
| 4 | + |
| 5 | +CONFIG += c++17 |
| 6 | + |
| 7 | +# You can make your code fail to compile if it uses deprecated APIs. |
| 8 | +# In order to do so, uncomment the following line. |
| 9 | +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 |
| 10 | + |
| 11 | +SOURCES += \ |
| 12 | + dialog.cpp \ |
| 13 | + dialogs/addappletdialog.cpp \ |
| 14 | + dialogs/addautostartentrydialog.cpp \ |
| 15 | + dialogs/appmenudialog.cpp \ |
| 16 | + dialogs/clioutputdialog.cpp \ |
| 17 | + dialogs/datetimedialog.cpp \ |
| 18 | + dialogs/kbindicatordialog.cpp \ |
| 19 | + dialogs/launcherdialog.cpp \ |
| 20 | + dialogs/layoutadddialog.cpp \ |
| 21 | + dialogs/localipv4dialog.cpp \ |
| 22 | + dialogs/usermenudialog.cpp \ |
| 23 | + dialogs/volumedialog.cpp \ |
| 24 | + dialogs/windowlistdialog.cpp \ |
| 25 | + dialogs/workspacesdialog.cpp \ |
| 26 | + panes/appearancepane.cpp \ |
| 27 | + panes/autostartpane.cpp \ |
| 28 | + panes/generalpane.cpp \ |
| 29 | + panes/keyboardpane.cpp \ |
| 30 | + main.cpp \ |
| 31 | + mainwindow.cpp \ |
| 32 | + pane.cpp \ |
| 33 | + panes/panelspane.cpp |
| 34 | + |
| 35 | +HEADERS += \ |
| 36 | + dialog.h \ |
| 37 | + dialogs/addappletdialog.h \ |
| 38 | + dialogs/addautostartentrydialog.h \ |
| 39 | + dialogs/appmenudialog.h \ |
| 40 | + dialogs/clioutputdialog.h \ |
| 41 | + dialogs/datetimedialog.h \ |
| 42 | + dialogs/kbindicatordialog.h \ |
| 43 | + dialogs/launcherdialog.h \ |
| 44 | + dialogs/layoutadddialog.h \ |
| 45 | + dialogs/localipv4dialog.h \ |
| 46 | + dialogs/usermenudialog.h \ |
| 47 | + dialogs/volumedialog.h \ |
| 48 | + dialogs/windowlistdialog.h \ |
| 49 | + dialogs/workspacesdialog.h \ |
| 50 | + panes/appearancepane.h \ |
| 51 | + panes/autostartpane.h \ |
| 52 | + panes/generalpane.h \ |
| 53 | + panes/keyboardpane.h \ |
| 54 | + mainwindow.h \ |
| 55 | + pane.h \ |
| 56 | + panes/panelspane.h |
| 57 | + |
| 58 | +# Default rules for deployment. |
| 59 | +qnx: target.path = /tmp/$${TARGET}/bin |
| 60 | +else: unix:!android: target.path = /opt/$${TARGET}/bin |
| 61 | +!isEmpty(target.path): INSTALLS += target |
| 62 | + |
| 63 | +FORMS += |
0 commit comments