| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2016-01-17T00:23:34
- #
- #-------------------------------------------------
- QT += core gui svg
- 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 \
- ccsim.cpp \
- wgtcodeeditor.cpp \
- wgtlinenumberarea.cpp \
- syntaxhighlighter.cpp
- HEADERS += mainwindow.h \
- simulator.h \
- playfield.h \
- debugwidget.h \
- program.h \
- instruction.h \
- parse.h \
- ccsim.h \
- wgtcodeeditor.h \
- wgtlinenumberarea.h \
- syntaxhighlighter.h
- FORMS += mainwindow.ui \
- debugwidget.ui \
- ccsim.ui
- RESOURCES += \
- ccsim.qrc
|