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