ccsim.pro 619 B

123456789101112131415161718192021222324252627282930313233
  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. parse.cpp
  19. HEADERS += mainwindow.h \
  20. simulator.h \
  21. playfield.h \
  22. debugwidget.h \
  23. program.h \
  24. instruction.h \
  25. parse.h
  26. FORMS += mainwindow.ui \
  27. debugwidget.ui