AutoGenetateModelServiceUI.pro 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. QT += core gui axcontainer
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. SOURCES += \
  8. TableHelper.cpp \
  9. WzExcel.cpp \
  10. main.cpp \
  11. mainwindow.cpp
  12. HEADERS += \
  13. TableHelper.h \
  14. WzExcel.h \
  15. mainwindow.h \
  16. template/Model.cpp.template \
  17. template/Model.h.template \
  18. template/MultipleWidget.cpp.template \
  19. template/MultipleWidget.h.template \
  20. template/Service.cpp.template \
  21. template/Service.h.template \
  22. template/Widget.cpp.template \
  23. template/Widget.h.template
  24. FORMS += \
  25. mainwindow.ui \
  26. template/MultipleWidget.ui.template \
  27. template/Widget.ui.template
  28. # Default rules for deployment.
  29. qnx: target.path = /tmp/$${TARGET}/bin
  30. else: unix:!android: target.path = /opt/$${TARGET}/bin
  31. !isEmpty(target.path): INSTALLS += target
  32. INCLUDEPATH += ../include