ConfigurableTool.pro 1.1 KB

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