Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 334 → Rev 335

/Classwork/ECE5505 - Test and Verification/Final Project/Project.pro
0,0 → 1,63
#-------------------------------------------------
#
# 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 +=