1
1

ccsim.pro 852 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-01-17T00:23:34
  4. #
  5. #-------------------------------------------------
  6. QT += core gui svg
  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. ccsim.cpp \
  20. wgtcodeeditor.cpp \
  21. wgtlinenumberarea.cpp \
  22. syntaxhighlighter.cpp
  23. HEADERS += mainwindow.h \
  24. simulator.h \
  25. playfield.h \
  26. debugwidget.h \
  27. program.h \
  28. instruction.h \
  29. parse.h \
  30. ccsim.h \
  31. wgtcodeeditor.h \
  32. wgtlinenumberarea.h \
  33. syntaxhighlighter.h
  34. FORMS += mainwindow.ui \
  35. debugwidget.ui \
  36. ccsim.ui
  37. RESOURCES += \
  38. ccsim.qrc