-
Notifications
You must be signed in to change notification settings - Fork 0
/
dic_sim.pro
69 lines (61 loc) · 1.35 KB
/
dic_sim.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
62
63
64
65
66
67
68
69
#-------------------------------------------------
#
# Project created by QtCreator 2012-10-24T22:26:09
#
#-------------------------------------------------
QMAKE_CXXFLAGS += -std=c++0x
QT += core gui
TARGET = dic_sim
TEMPLATE = app
INCLUDEPATH += include
RESOURCES += \
resource.qrc
OTHER_FILES += \
icd.l \
icd.y \
README.md
SOURCES += \
src/wire.cpp \
src/togglebutton.cpp \
src/quickunion.cpp \
src/powerbutton.cpp \
src/mainwindow.cpp \
src/main.cpp \
src/led.cpp \
src/icviewer.cpp \
src/icparser.cpp \
src/iclexer.cpp \
src/icdialog.cpp \
src/ic.cpp \
src/console.cpp \
src/circuit.cpp \
src/cell.cpp \
src/breadboard.cpp \
src/block.cpp \
include/inputcell.cpp \
src/tag.cpp \
src/tagdialog.cpp
HEADERS += \
include/wire.h \
include/utility.h \
include/togglebutton.h \
include/state.h \
include/quickunion.h \
include/powerbutton.h \
include/mainwindow.h \
include/led.h \
include/icviewer.h \
include/icparser.h \
include/iclexer.h \
include/icdialog.h \
include/ic.h \
include/console.h \
include/circuit.h \
include/cell.h \
include/breadboard.h \
include/blockdata.h \
include/block.h \
include/constants.h \
include/inputcell.h \
include/tag.h \
include/tagdialog.h