|
| 1 | +QT += core gui widgets xml concurrent script network |
| 2 | + |
| 3 | +CONFIG += c++11 |
| 4 | + |
| 5 | +INCLUDEPATH += src |
| 6 | + |
| 7 | +RC_ICONS = src/app.ico |
| 8 | + |
| 9 | +# The following define makes your compiler emit warnings if you use |
| 10 | +# any Qt feature that has been marked deprecated (the exact warnings |
| 11 | +# depend on your compiler). Please consult the documentation of the |
| 12 | +# deprecated API in order to know how to port your code away from it. |
| 13 | +DEFINES += QT_DEPRECATED_WARNINGS |
| 14 | +win32 { |
| 15 | +DEFINES += WINDOWS |
| 16 | +DEFINES += _CRT_SECURE_NO_WARNINGS |
| 17 | +} |
| 18 | + |
| 19 | +# You can also make your code fail to compile if it uses deprecated APIs. |
| 20 | +# In order to do so, uncomment the following line. |
| 21 | +# You can also select to disable deprecated APIs only up to a certain version of Qt. |
| 22 | +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 |
| 23 | + |
| 24 | +SOURCES += \ |
| 25 | + src/ClassAnnotate.cpp \ |
| 26 | + src/ClassApplog.cpp \ |
| 27 | + src/ClassChip.cpp \ |
| 28 | + src/ClassColors.cpp \ |
| 29 | + src/ClassController.cpp \ |
| 30 | + src/ClassLogic.cpp \ |
| 31 | + src/ClassNetlist.cpp \ |
| 32 | + src/ClassScript.cpp \ |
| 33 | + src/ClassSimZ80.cpp \ |
| 34 | + src/ClassTip.cpp \ |
| 35 | + src/ClassTrickbox.cpp \ |
| 36 | + src/ClassWatch.cpp \ |
| 37 | + src/DialogEditAnnotations.cpp \ |
| 38 | + src/DialogEditBuses.cpp \ |
| 39 | + src/DialogEditColors.cpp \ |
| 40 | + src/DialogEditNets.cpp \ |
| 41 | + src/DialogEditWatchlist.cpp \ |
| 42 | + src/DialogEditWaveform.cpp \ |
| 43 | + src/DialogSchematic.cpp \ |
| 44 | + src/DockCommand.cpp \ |
| 45 | + src/DockImageView.cpp \ |
| 46 | + src/DockLog.cpp \ |
| 47 | + src/DockMonitor.cpp \ |
| 48 | + src/DockWaveform.cpp \ |
| 49 | + src/MainWindow.cpp \ |
| 50 | + src/WidgetEditColor.cpp \ |
| 51 | + src/WidgetGraphicsView.cpp \ |
| 52 | + src/WidgetImageOverlay.cpp \ |
| 53 | + src/WidgetImageView.cpp \ |
| 54 | + src/WidgetToolbar.cpp \ |
| 55 | + src/WidgetWaveform.cpp \ |
| 56 | + src/main.cpp |
| 57 | + |
| 58 | +HEADERS += \ |
| 59 | + src/AppTypes.h \ |
| 60 | + src/ClassAnnotate.h \ |
| 61 | + src/ClassApplog.h \ |
| 62 | + src/ClassChip.h \ |
| 63 | + src/ClassColors.h \ |
| 64 | + src/ClassController.h \ |
| 65 | + src/ClassException.h \ |
| 66 | + src/ClassLogic.h \ |
| 67 | + src/ClassNetlist.h \ |
| 68 | + src/ClassScript.h \ |
| 69 | + src/ClassSimZ80.h \ |
| 70 | + src/ClassSingleton.h \ |
| 71 | + src/ClassTip.h \ |
| 72 | + src/ClassTrickbox.h \ |
| 73 | + src/ClassWatch.h \ |
| 74 | + src/DialogEditAnnotations.h \ |
| 75 | + src/DialogEditBuses.h \ |
| 76 | + src/DialogEditColors.h \ |
| 77 | + src/DialogEditNets.h \ |
| 78 | + src/DialogEditWatchlist.h \ |
| 79 | + src/DialogEditWaveform.h \ |
| 80 | + src/DialogSchematic.h \ |
| 81 | + src/DockCommand.h \ |
| 82 | + src/DockImageView.h \ |
| 83 | + src/DockLog.h \ |
| 84 | + src/DockMonitor.h \ |
| 85 | + src/DockWaveform.h \ |
| 86 | + src/MainWindow.h \ |
| 87 | + src/WidgetEditColor.h \ |
| 88 | + src/WidgetGraphicsView.h \ |
| 89 | + src/WidgetImageOverlay.h \ |
| 90 | + src/WidgetImageView.h \ |
| 91 | + src/WidgetToolbar.h \ |
| 92 | + src/WidgetWaveform.h \ |
| 93 | + src/z80state.h |
| 94 | + |
| 95 | +FORMS += \ |
| 96 | + src/DialogEditAnnotations.ui \ |
| 97 | + src/DialogEditBuses.ui \ |
| 98 | + src/DialogEditColors.ui \ |
| 99 | + src/DialogEditNets.ui \ |
| 100 | + src/DialogEditWatchlist.ui \ |
| 101 | + src/DialogEditWaveform.ui \ |
| 102 | + src/DialogSchematic.ui \ |
| 103 | + src/DockCommand.ui \ |
| 104 | + src/DockImageView.ui \ |
| 105 | + src/DockLog.ui \ |
| 106 | + src/DockMonitor.ui \ |
| 107 | + src/DockWaveform.ui \ |
| 108 | + src/MainWindow.ui \ |
| 109 | + src/WidgetEditColor.ui \ |
| 110 | + src/WidgetImageOverlay.ui \ |
| 111 | + src/WidgetToolbar.ui |
| 112 | + |
| 113 | +# Default rules for deployment. |
| 114 | +qnx: target.path = /tmp/$${TARGET}/bin |
| 115 | +else: unix:!android: target.path = /opt/$${TARGET}/bin |
| 116 | +!isEmpty(target.path): INSTALLS += target |
0 commit comments