ConfigurableTool.pro 893 B

123456789101112131415161718192021222324252627282930313233343536
  1. QT += core gui
  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. basicproperty.cpp \
  9. collectionwindow.cpp \
  10. containerpool.cpp \
  11. main.cpp \
  12. mainwindow.cpp \
  13. statusconfiguration.cpp
  14. HEADERS += \
  15. basicproperty.h \
  16. collectionwindow.h \
  17. containerpool.h \
  18. mainwindow.h \
  19. statusconfiguration.h
  20. FORMS += \
  21. basicproperty.ui \
  22. collectionwindow.ui \
  23. containerpool.ui \
  24. mainwindow.ui \
  25. statusconfiguration.ui
  26. # Default rules for deployment.
  27. qnx: target.path = /tmp/$${TARGET}/bin
  28. else: unix:!android: target.path = /opt/$${TARGET}/bin
  29. !isEmpty(target.path): INSTALLS += target