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 19:58:53 +00:00
|
|
|
$$PWD/btjson.h \
|
2014-05-01 15:28:38 +00:00
|
|
|
$$PWD/prefjson.h \
|
2014-08-22 18:02:01 +00:00
|
|
|
$$PWD/jsonutils.h \
|
|
|
|
$$PWD/httptypes.h \
|
|
|
|
$$PWD/extra_translations.h \
|
|
|
|
$$PWD/webapplication.h \
|
|
|
|
$$PWD/requesthandler.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/btjson.cpp \
|
2014-05-01 15:28:38 +00:00
|
|
|
$$PWD/prefjson.cpp \
|
2014-08-22 18:02:01 +00:00
|
|
|
$$PWD/webapplication.cpp \
|
|
|
|
$$PWD/requesthandler.cpp
|
2010-10-09 14:06:35 +00:00
|
|
|
|
2014-06-04 06:10:06 +00:00
|
|
|
# QJson JSON parser/serializer for using with Qt4
|
|
|
|
lessThan(QT_MAJOR_VERSION, 5) {
|
|
|
|
include(qjson/qjson.pri)
|
|
|
|
}
|
|
|
|
|
2012-05-26 17:42:44 +00:00
|
|
|
RESOURCES += $$PWD/webui.qrc
|