Test_Dmp.pro 880 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. QT += core gui network
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  4. ### qBreakpad config
  5. include($$PWD/config.pri)
  6. ## google-breakpad
  7. include($$PWD/third_party/breakpad.pri)
  8. # You can make your code fail to compile if it uses deprecated APIs.
  9. # In order to do so, uncomment the following line.
  10. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  11. SOURCES += \
  12. QBreakpadHandler.cpp \
  13. QBreakpadHttpUploader.cpp \
  14. main.cpp \
  15. mainwindow.cpp
  16. HEADERS += \
  17. QBreakpadHandler.h \
  18. QBreakpadHttpUploader.h \
  19. mainwindow.h \
  20. singletone/call_once.h \
  21. singletone/singleton.h
  22. FORMS += \
  23. mainwindow.ui
  24. # Default rules for deployment.
  25. qnx: target.path = /tmp/$${TARGET}/bin
  26. else: unix:!android: target.path = /opt/$${TARGET}/bin
  27. !isEmpty(target.path): INSTALLS += target