httpserver.pri 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. INCLUDEPATH += $$PWD
  2. DEPENDPATH += $$PWD
  3. QT += network
  4. # Enable very detailed debug messages when compiling the debug version
  5. CONFIG(debug, debug|release) {
  6. DEFINES += SUPERVERBOSE
  7. }
  8. HEADERS += $$PWD/httpglobal.h \
  9. $$PWD/httplistener.h \
  10. $$PWD/httpconnectionhandler.h \
  11. $$PWD/httpconnectionhandlerpool.h \
  12. $$PWD/httprequest.h \
  13. $$PWD/httpresponse.h \
  14. $$PWD/httpcookie.h \
  15. $$PWD/httprequesthandler.h \
  16. $$PWD/httpsession.h \
  17. $$PWD/httpsessionstore.h \
  18. $$PWD/staticfilecontroller.h
  19. SOURCES += $$PWD/httpglobal.cpp \
  20. $$PWD/httplistener.cpp \
  21. $$PWD/httpconnectionhandler.cpp \
  22. $$PWD/httpconnectionhandlerpool.cpp \
  23. $$PWD/httprequest.cpp \
  24. $$PWD/httpresponse.cpp \
  25. $$PWD/httpcookie.cpp \
  26. $$PWD/httprequesthandler.cpp \
  27. $$PWD/httpsession.cpp \
  28. $$PWD/httpsessionstore.cpp \
  29. $$PWD/staticfilecontroller.cpp