| 123456789101112131415161718192021222324252627282930313233 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2016-01-17T00:23:34
- #
- #-------------------------------------------------
- QT += core gui
- CONFIG += c++11
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- TARGET = csim
- TEMPLATE = app
- SOURCES += main.cpp\
- mainwindow.cpp \
- playfield.cpp \
- debugwidget.cpp \
- program.cpp \
- simulator.cpp \
- instruction.cpp \
- parse.cpp
- HEADERS += mainwindow.h \
- simulator.h \
- playfield.h \
- debugwidget.h \
- program.h \
- instruction.h \
- parse.h
- FORMS += mainwindow.ui \
- debugwidget.ui
|