No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

56 líneas
1.4 KiB

  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  4. # The following define makes your compiler emit warnings if you use
  5. # any Qt feature that has been marked deprecated (the exact warnings
  6. # depend on your compiler). Please consult the documentation of the
  7. # deprecated API in order to know how to port your code away from it.
  8. DEFINES += QT_DEPRECATED_WARNINGS
  9. # You can also make your code fail to compile if it uses deprecated APIs.
  10. # In order to do so, uncomment the following line.
  11. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  12. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  13. SOURCES += \
  14. button.cpp \
  15. coil.cpp \
  16. comparator.cpp \
  17. connection.cpp \
  18. contact.cpp \
  19. creatitem.cpp \
  20. hmi.cpp \
  21. item.cpp \
  22. light.cpp \
  23. main.cpp \
  24. mainwindow.cpp \
  25. mygraphicsview.cpp \
  26. plc.cpp
  27. HEADERS += \
  28. button.h \
  29. coil.h \
  30. comparator.h \
  31. connection.h \
  32. contact.h \
  33. creatitem.h \
  34. hmi.h \
  35. item.h \
  36. light.h \
  37. mainwindow.h \
  38. mygraphicsview.h \
  39. plc.h
  40. FORMS += \
  41. hmi.ui \
  42. mainwindow.ui \
  43. plc.ui
  44. # Default rules for deployment.
  45. qnx: target.path = /tmp/$${TARGET}/bin
  46. else: unix:!android: target.path = /opt/$${TARGET}/bin
  47. !isEmpty(target.path): INSTALLS += target