Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
335 Kevin 1
#-------------------------------------------------
2
#
3
# Project created by QtCreator 2014-11-04T14:50:30
4
#
5
#-------------------------------------------------
6
 
7
QT       += core gui
8
 
9
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10
 
11
TARGET = Project
12
TEMPLATE = app
13
 
14
# Set some debug flags
15
CONFIG(debug, debug|release) {
16
        message(DEBUG MODE)
17
        DEFINES += _DEBUG
18
} else {
19
        message(RELEASE MODE)
20
        DEFINES -= _DEBUG
21
}
22
 
23
SOURCES += main.cpp\
24
        MainWindow.cpp \
25
    Canvas.cpp \
26
    Gate_AND.cpp \
27
    Gate_OR.cpp \
28
    Gate_INPUT.cpp \
29
    Gate_OUTPUT.cpp \
30
    Gate_BASE.cpp \
31
    Gate_BUFFER.cpp \
32
    Gate_NOT.cpp \
33
    Gate_NAND.cpp \
34
    Gate_NOR.cpp \
35
    Gate_XOR.cpp \
36
    Gate_XNOR.cpp \
37
    Gate_DFF.cpp \
38
    Circuit.cpp \
39
    Wire.cpp \
40
    Simulator.cpp \
41
    SimController.cpp
42
 
43
HEADERS  += MainWindow.h \
44
    Canvas.h \
45
    GlobalDefines.h \
46
    Gate_AND.h \
47
    Gate_OR.h \
48
    Gate_INPUT.h \
49
    Gate_OUTPUT.h \
50
    Gate_BASE.h \
51
    Gate_BUFFER.h \
52
    Gate_NOT.h \
53
    Gate_NAND.h \
54
    Gate_NOR.h \
55
    Gate_XOR.h \
56
    Gate_XNOR.h \
57
    Gate_DFF.h \
58
    Circuit.h \
59
    Wire.h \
60
    Simulator.h \
61
    SimController.h
62
 
63
FORMS    +=