src.pro 829 B

12345678910111213141516171819202122232425262728293031323334353637
  1. include(../qhttpserver.pri)
  2. QHTTPSERVER_BASE = ..
  3. TEMPLATE = lib
  4. TARGET = qhttpserver
  5. !win32:VERSION = 0.1.0
  6. QT += network
  7. QT -= gui
  8. CONFIG += dll debug_and_release
  9. CONFIG(debug, debug|release) {
  10. win32: TARGET = $$join(TARGET,,,d)
  11. }
  12. DEFINES += QHTTPSERVER_EXPORT
  13. INCLUDEPATH += $$QHTTPSERVER_BASE/http-parser
  14. PRIVATE_HEADERS += $$QHTTPSERVER_BASE/http-parser/http_parser.h qhttpconnection.h
  15. PUBLIC_HEADERS += qhttpserver.h qhttprequest.h qhttpresponse.h qhttpserverapi.h qhttpserverfwd.h
  16. HEADERS = $$PRIVATE_HEADERS $$PUBLIC_HEADERS
  17. SOURCES = *.cpp $$QHTTPSERVER_BASE/http-parser/http_parser.c
  18. OBJECTS_DIR = $$QHTTPSERVER_BASE/build
  19. MOC_DIR = $$QHTTPSERVER_BASE/build
  20. DESTDIR = $$QHTTPSERVER_BASE/lib
  21. target.path = $$LIBDIR
  22. headers.path = $$INCLUDEDIR
  23. headers.files = $$PUBLIC_HEADERS
  24. INSTALLS += target headers