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