-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircuitSimulator.pro
More file actions
83 lines (75 loc) · 2.68 KB
/
CircuitSimulator.pro
File metadata and controls
83 lines (75 loc) · 2.68 KB
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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
Graphic/EditorElement.cpp \
Graphic/EditorWidget.cpp \
Graphic/EditorWire.cpp \
Graphic/Elements/EditorCapacity.cpp \
Graphic/Elements/EditorCurrentSource.cpp \
Graphic/Elements/EditorDiode.cpp \
Graphic/Elements/EditorFunctionGenerator.cpp \
Graphic/Elements/EditorGround.cpp \
Graphic/Elements/EditorInductor.cpp \
Graphic/Elements/EditorMOSFET.cpp \
Graphic/Elements/EditorResistor.cpp \
Graphic/Elements/EditorVCC.cpp \
Graphic/Elements/EditorVoltageSource.cpp \
Graphic/OscilloscopeWidget.cpp \
Graphic/ParametersInputWidget.cpp \
InfixExpression.cpp \
Simulation/Circuit.cpp \
Simulation/Element.cpp \
Simulation/Elements/Capacity.cpp \
Simulation/Elements/CurrentSource.cpp \
Simulation/Elements/Diode.cpp \
Simulation/Elements/FunctionGenerator.cpp \
Simulation/Elements/Inductor.cpp \
Simulation/Elements/MOSFET.cpp \
Simulation/Elements/Resistor.cpp \
Simulation/Elements/VoltageSource.cpp \
Simulation/Net.cpp \
Simulation/Pin.cpp \
main.cpp \
MainWindow.cpp
HEADERS += \
Graphic/EditorElement.h \
Graphic/EditorWidget.h \
Graphic/EditorWire.h \
Graphic/Elements/EditorCapacity.h \
Graphic/Elements/EditorCurrentSource.h \
Graphic/Elements/EditorDiode.h \
Graphic/Elements/EditorFunctionGenerator.h \
Graphic/Elements/EditorGround.h \
Graphic/Elements/EditorInductor.h \
Graphic/Elements/EditorMOSFET.h \
Graphic/Elements/EditorResistor.h \
Graphic/Elements/EditorVCC.h \
Graphic/Elements/EditorVoltageSource.h \
Graphic/OscilloscopeWidget.h \
Graphic/ParametersInputWidget.h \
InfixExpression.h \
MainWindow.h \
Simulation/Circuit.h \
Simulation/Element.h \
Simulation/Elements/Capacity.h \
Simulation/Elements/CurrentSource.h \
Simulation/Elements/Diode.h \
Simulation/Elements/FunctionGenerator.h \
Simulation/Elements/Inductor.h \
Simulation/Elements/MOSFET.h \
Simulation/Elements/Resistor.h \
Simulation/Elements/VoltageSource.h \
Simulation/Net.h \
Simulation/Pin.h
TRANSLATIONS += Tranlations/CiruitSimulator.zh_CN.ts
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
Examples/Examples.qrc \
Tranlations/Translations.qrc