Subversion Repositories Code-Repo

Rev

Blame | Last modification | View Log | RSS feed

#-------------------------------------------------
#
# Project created by QtCreator 2014-11-04T14:50:30
#
#-------------------------------------------------

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = Project
TEMPLATE = app

# Set some debug flags
CONFIG(debug, debug|release) {
        message(DEBUG MODE)
        DEFINES += _DEBUG
} else {
        message(RELEASE MODE)
        DEFINES -= _DEBUG
}

SOURCES += main.cpp\
        MainWindow.cpp \
    Canvas.cpp \
    Gate_AND.cpp \
    Gate_OR.cpp \
    Gate_INPUT.cpp \
    Gate_OUTPUT.cpp \
    Gate_BASE.cpp \
    Gate_BUFFER.cpp \
    Gate_NOT.cpp \
    Gate_NAND.cpp \
    Gate_NOR.cpp \
    Gate_XOR.cpp \
    Gate_XNOR.cpp \
    Gate_DFF.cpp \
    Circuit.cpp \
    Wire.cpp \
    Simulator.cpp \
    SimController.cpp

HEADERS  += MainWindow.h \
    Canvas.h \
    GlobalDefines.h \
    Gate_AND.h \
    Gate_OR.h \
    Gate_INPUT.h \
    Gate_OUTPUT.h \
    Gate_BASE.h \
    Gate_BUFFER.h \
    Gate_NOT.h \
    Gate_NAND.h \
    Gate_NOR.h \
    Gate_XOR.h \
    Gate_XNOR.h \
    Gate_DFF.h \
    Circuit.h \
    Wire.h \
    Simulator.h \
    SimController.h

FORMS    +=