2010-10-09 14:06:35 +00:00
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
|
|
|
HEADERS += $$PWD/httpserver.h \
|
|
|
|
$$PWD/httpconnection.h \
|
|
|
|
$$PWD/httprequestparser.h \
|
|
|
|
$$PWD/httpresponsegenerator.h \
|
2012-05-26 17:42:44 +00:00
|
|
|
$$PWD/json.h \
|
|
|
|
$$PWD/jsonlist.h \
|
|
|
|
$$PWD/jsondict.h \
|
2012-05-26 19:58:53 +00:00
|
|
|
$$PWD/btjson.h \
|
|
|
|
$$PWD/prefjson.h
|
2010-10-09 14:06:35 +00:00
|
|
|
|
|
|
|
SOURCES += $$PWD/httpserver.cpp \
|
|
|
|
$$PWD/httpconnection.cpp \
|
|
|
|
$$PWD/httprequestparser.cpp \
|
|
|
|
$$PWD/httpresponsegenerator.cpp \
|
2012-05-26 17:42:44 +00:00
|
|
|
$$PWD/jsonlist.cpp \
|
|
|
|
$$PWD/jsondict.cpp \
|
|
|
|
$$PWD/btjson.cpp \
|
2012-05-26 19:58:53 +00:00
|
|
|
$$PWD/json.cpp \
|
|
|
|
$$PWD/prefjson.cpp
|
2010-10-09 14:06:35 +00:00
|
|
|
|
2012-05-26 17:42:44 +00:00
|
|
|
RESOURCES += $$PWD/webui.qrc
|