-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCommon.pri
169 lines (165 loc) · 7.93 KB
/
Common.pri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
HEADERS += \
$$PWD/CircuitFileParser.h \
$$PWD/Components/ComplexLogic/Counter.h \
$$PWD/Components/ComplexLogic/DMsFlipFlop.h \
$$PWD/Components/ComplexLogic/Decoder.h \
$$PWD/Components/ComplexLogic/Demultiplexer.h \
$$PWD/Components/ComplexLogic/Encoder.h \
$$PWD/Components/ComplexLogic/FullAdder.h \
$$PWD/Components/ComplexLogic/HalfAdder.h \
$$PWD/Components/ComplexLogic/JKFlipFlop.h \
$$PWD/Components/ComplexLogic/JkMsFlipFlop.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicCounterCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicDMsFlipFlopCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicDecoderCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicDemultiplexerCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicEncoderCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicFullAdderCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicHalfAdderCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicJKFlipFlopCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicJkMsFlipFlopCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicMultiplexerCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicRsClockedFlipFlopCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicRsMsFlipFlopCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicShiftRegisterCell.h \
$$PWD/Components/ComplexLogic/LogicCells/LogicTFlipFlopCell.h \
$$PWD/Components/ComplexLogic/Multiplexer.h \
$$PWD/Components/ComplexLogic/RsClockedFlipFlop.h \
$$PWD/Components/ComplexLogic/RsMsFlipFlop.h \
$$PWD/Components/ComplexLogic/ShiftRegister.h \
$$PWD/Components/ComplexLogic/TFlipFlop.h \
$$PWD/Components/Gates/BufferGate.h \
$$PWD/Components/Gates/LogicCells/LogicBufferGateCell.h \
$$PWD/Components/Inputs/LogicCells/LogicClockCell.h \
$$PWD/Components/Inputs/LogicCells/LogicConstantCell.h \
$$PWD/Components/Inputs/LogicClock.h \
$$PWD/Components/Inputs/LogicConstant.h \
$$PWD/Components/LogicDiodeCell.h \
$$PWD/Gui/PieMenu.h \
$$PWD/RuntimeConfigParser.h \
$$PWD/Undo/UndoCopyType.h \
$${PWD}/Components/ComplexLogic/DFlipFlop.h \
$${PWD}/Components/ComplexLogic/LogicCells/LogicDFlipFlopCell.h \
$${PWD}/Components/ConPoint.h \
$${PWD}/Components/Gates/LogicCells/LogicAndGateCell.h \
$${PWD}/Components/Inputs/LogicButton.h \
$${PWD}/Components/Inputs/LogicCells/LogicButtonCell.h \
$${PWD}/Components/LogicBaseCell.h \
$${PWD}/Components/Inputs/LogicCells/LogicInputCell.h \
$${PWD}/Components/Gates/LogicCells/LogicNotGateCell.h \
$${PWD}/Components/Gates/LogicCells/LogicOrGateCell.h \
$${PWD}/Components/Outputs/LogicCells/LogicOutputCell.h \
$${PWD}/Components/LogicWireCell.h \
$${PWD}/Components/Gates/LogicCells/LogicXorGateCell.h \
$${PWD}/Components/TextLabel.h \
$${PWD}/Components/IBaseComponent.h \
$${PWD}/Components/ComplexLogic/AbstractComplexLogic.h \
$${PWD}/Components/ComplexLogic/RsFlipFlop.h \
$${PWD}/Components/ComplexLogic/LogicCells/LogicRsFlipFlopCell.h \
$${PWD}/Components/Gates/AbstractGate.h \
$${PWD}/Components/Gates/AndGate.h \
$${PWD}/Components/Gates/NotGate.h \
$${PWD}/Components/Gates/OrGate.h \
$${PWD}/Components/Gates/XorGate.h \
$${PWD}/Components/Inputs/LogicInput.h \
$${PWD}/Components/Outputs/LogicOutput.h \
$${PWD}/Components/LogicWire.h \
$${PWD}/CoreLogic.h \
$${PWD}/HelperFunctions.h \
$${PWD}/HelperStructures.h \
$${PWD}/Gui/MainWindow.h \
$${PWD}/Undo/UndoAddType.h \
$${PWD}/Undo/UndoBaseType.h \
$${PWD}/Undo/UndoConfigureType.h \
$${PWD}/Undo/UndoDeleteType.h \
$${PWD}/Undo/UndoMoveType.h \
$${PWD}/View.h \
$${PWD}/Configuration.h \
$${PWD}/Gui/AboutDialog.h \
$${PWD}/Gui/WelcomeDialog.h \
$${PWD}/Gui/IconToolButton.h \
$${PWD}/Gui/TutorialFrame.h
SOURCES += \
$$PWD/CircuitFileParser.cpp \
$$PWD/Components/ComplexLogic/Counter.cpp \
$$PWD/Components/ComplexLogic/DMsFlipFlop.cpp \
$$PWD/Components/ComplexLogic/Decoder.cpp \
$$PWD/Components/ComplexLogic/Demultiplexer.cpp \
$$PWD/Components/ComplexLogic/Encoder.cpp \
$$PWD/Components/ComplexLogic/FullAdder.cpp \
$$PWD/Components/ComplexLogic/HalfAdder.cpp \
$$PWD/Components/ComplexLogic/JKFlipFlop.cpp \
$$PWD/Components/ComplexLogic/JkMsFlipFlop.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicCounterCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicDMsFlipFlopCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicDecoderCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicDemultiplexerCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicEncoderCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicFullAdderCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicHalfAdderCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicJKFlipFlopCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicJkMsFlipFlopCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicMultiplexerCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicRsClockedFlipFlopCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicRsMsFlipFlopCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicShiftRegisterCell.cpp \
$$PWD/Components/ComplexLogic/LogicCells/LogicTFlipFlopCell.cpp \
$$PWD/Components/ComplexLogic/Multiplexer.cpp \
$$PWD/Components/ComplexLogic/RsClockedFlipFlop.cpp \
$$PWD/Components/ComplexLogic/RsMsFlipFlop.cpp \
$$PWD/Components/ComplexLogic/ShiftRegister.cpp \
$$PWD/Components/ComplexLogic/TFlipFlop.cpp \
$$PWD/Components/Gates/BufferGate.cpp \
$$PWD/Components/Gates/LogicCells/LogicBufferGateCell.cpp \
$$PWD/Components/Inputs/LogicCells/LogicClockCell.cpp \
$$PWD/Components/Inputs/LogicCells/LogicConstantCell.cpp \
$$PWD/Components/Inputs/LogicClock.cpp \
$$PWD/Components/Inputs/LogicConstant.cpp \
$$PWD/Components/LogicDiodeCell.cpp \
$$PWD/Gui/PieMenu.cpp \
$$PWD/RuntimeConfigParser.cpp \
$$PWD/Undo/UndoCopyType.cpp \
$${PWD}/Components/ComplexLogic/DFlipFlop.cpp \
$${PWD}/Components/ComplexLogic/LogicCells/LogicDFlipFlopCell.cpp \
$${PWD}/Components/ConPoint.cpp \
$${PWD}/Components/Gates/LogicCells/LogicAndGateCell.cpp \
$${PWD}/Components/Inputs/LogicButton.cpp \
$${PWD}/Components/Inputs/LogicCells/LogicButtonCell.cpp \
$${PWD}/Components/LogicBaseCell.cpp \
$${PWD}/Components/Inputs/LogicCells/LogicInputCell.cpp \
$${PWD}/Components/Gates/LogicCells/LogicNotGateCell.cpp \
$${PWD}/Components/Gates/LogicCells/LogicOrGateCell.cpp \
$${PWD}/Components/Outputs/LogicCells/LogicOutputCell.cpp \
$${PWD}/Components/LogicWireCell.cpp \
$${PWD}/Components/Gates/LogicCells/LogicXorGateCell.cpp \
$${PWD}/Components/TextLabel.cpp \
$${PWD}/Components/IBaseComponent.cpp \
$${PWD}/Components/ComplexLogic/AbstractComplexLogic.cpp \
$${PWD}/Components/ComplexLogic/RsFlipFlop.cpp \
$${PWD}/Components/ComplexLogic/LogicCells/LogicRsFlipFlopCell.cpp \
$${PWD}/Components/Gates/AbstractGate.cpp \
$${PWD}/Components/Gates/AndGate.cpp \
$${PWD}/Components/Gates/NotGate.cpp \
$${PWD}/Components/Gates/OrGate.cpp \
$${PWD}/Components/Gates/XorGate.cpp \
$${PWD}/Components/Inputs/LogicInput.cpp \
$${PWD}/Components/Outputs/LogicOutput.cpp \
$${PWD}/Components/LogicWire.cpp \
$${PWD}/CoreLogic.cpp \
$${PWD}/Undo/UndoAddType.cpp \
$${PWD}/Undo/UndoBaseType.cpp \
$${PWD}/Undo/UndoConfigureType.cpp \
$${PWD}/Undo/UndoDeleteType.cpp \
$${PWD}/Undo/UndoMoveType.cpp \
$${PWD}/Gui/MainWindow.cpp \
$${PWD}/View.cpp \
$${PWD}/Gui/AboutDialog.cpp \
$${PWD}/Gui/WelcomeDialog.cpp \
$${PWD}/Gui/IconToolButton.cpp \
$${PWD}/Gui/TutorialFrame.cpp
INCLUDEPATH += $${PWD}
FORMS += \
$$PWD/Gui/MainWindow.ui \
$$PWD/Gui/AboutDialog.ui \
$${PWD}/Gui/WelcomeDialog.ui \
$${PWD}/Gui/TutorialFrame.ui