httpThreadNum1.pro 614 B

12345678910111213141516171819202122232425262728
  1. QT += network
  2. QT -= gui
  3. TEMPLATE = lib
  4. DEFINES += HTTPTHREADNUM1_LIBRARY
  5. CONFIG += c++17
  6. DESTDIR +=$$PWD/bin
  7. # You can make your code fail to compile if it uses deprecated APIs.
  8. # In order to do so, uncomment the following line.
  9. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  10. SOURCES += \
  11. HttpClient.cpp \
  12. httpthreadnum1.cpp
  13. HEADERS += \
  14. include\HttpClient.h \
  15. include\httpThreadNum1_global.h \
  16. include\httpthreadnum1.h
  17. # Default rules for deployment.
  18. unix {
  19. target.path = /usr/lib
  20. }
  21. !isEmpty(target.path): INSTALLS += target