ConfigurableTool.pro 1.0 KB

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