server.pri 371 B

123456789101112131415
  1. SOURCES += $$PWD/HttpServer.cpp \
  2. $$PWD/HttpRequest.cpp \
  3. $$PWD/HttpResponse.cpp \
  4. $$PWD/AbstractServlet.cpp \
  5. $$PWD/FileServlet.cpp \
  6. $$PWD/LogModel.cpp
  7. HEADERS += $$PWD/HttpServer.h \
  8. $$PWD/HttpRequest.h \
  9. $$PWD/HttpResponse.h \
  10. $$PWD/AbstractServlet.h \
  11. $$PWD/FileServlet.h \
  12. $$PWD/LogModel.h
  13. INCLUDEPATH += $$PWD
  14. QT += network