ccsim.pro 589 B

12345678910111213141516171819202122232425262728293031
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-01-17T00:23:34
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. CONFIG += c++11
  8. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  9. TARGET = csim
  10. TEMPLATE = app
  11. SOURCES += main.cpp\
  12. mainwindow.cpp \
  13. playfield.cpp \
  14. debugwidget.cpp \
  15. program.cpp \
  16. simulator.cpp \
  17. instruction.cpp
  18. HEADERS += mainwindow.h \
  19. simulator.h \
  20. playfield.h \
  21. debugwidget.h \
  22. program.h \
  23. instruction.h
  24. FORMS += mainwindow.ui \
  25. debugwidget.ui