-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogicLab.pro
62 lines (52 loc) · 1.26 KB
/
LogicLab.pro
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
TEMPLATE = app
CONFIG += console
CONFIG += qt
QT += widgets
INCLUDEPATH += .
DEPENDPATH += .
SOURCES += main.cpp \
model/gates/andgate.cpp \
model/gates/connector.cpp \
model/gates/gate.cpp \
model/gates/inverter.cpp \
model/gates/nandgate.cpp \
model/gates/nmgate.cpp \
model/gates/norgate.cpp \
model/gates/orgate.cpp \
model/gates/xorgate.cpp \
model/probes/gatetester.cpp \
model/probes/voltmeter.cpp \
model/wires/wires.cpp \
view/gatelist.cpp \
view/gatesmodel.cpp \
view/mainwindow.cpp \
view/circuit.cpp \
model/gates/xnorgate.cpp \
model/gates/bit.cpp
HEADERS += \
model/gates/andgate.h \
model/gates/connector.h \
model/gates/gate.h \
model/gates/inverter.h \
model/gates/nandgate.h \
model/gates/nmgate.h \
model/gates/norgate.h \
model/gates/orgate.h \
model/gates/xorgate.h \
model/probes/gatetester.h \
model/probes/voltmeter.h \
model/wires/wires.h \
model/gatetextures.h \
model/model.h \
view/gatelist.h \
view/gatesmodel.h \
view/mainwindow.h \
view/circuit.h \
model/gates/xnorgate.h \
model/gates/bit.h \
model/gates/device.h
OTHER_FILES +=
RESOURCES += \
logiclab.qrc
FORMS += \
view/mainwindow.ui