mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-30 12:18:05 -06:00
Change project directory structure according to application structure. Change 'nox' configuration option to something more meaningful 'nogui'. Rename 'Icons' folder to 'icons' (similar to other folders). Partially add 'nowebui' option support. Remove QConf project file.
31 lines
890 B
Plaintext
31 lines
890 B
Plaintext
INCLUDEPATH += $$PWD
|
|
|
|
HEADERS += $$PWD/httpserver.h \
|
|
$$PWD/httpconnection.h \
|
|
$$PWD/btjson.h \
|
|
$$PWD/prefjson.h \
|
|
$$PWD/jsonutils.h \
|
|
$$PWD/extra_translations.h \
|
|
$$PWD/webapplication.h \
|
|
$$PWD/abstractrequesthandler.h \
|
|
$$PWD/requesthandler.h \
|
|
$$PWD/qtorrentfilter.h
|
|
|
|
SOURCES += $$PWD/httpserver.cpp \
|
|
$$PWD/httpconnection.cpp \
|
|
$$PWD/httprequestparser.cpp \
|
|
$$PWD/httpresponsegenerator.cpp \
|
|
$$PWD/btjson.cpp \
|
|
$$PWD/prefjson.cpp \
|
|
$$PWD/webapplication.cpp \
|
|
$$PWD/abstractrequesthandler.cpp \
|
|
$$PWD/requesthandler.cpp \
|
|
$$PWD/qtorrentfilter.cpp
|
|
|
|
# QJson JSON parser/serializer for using with Qt4
|
|
lessThan(QT_MAJOR_VERSION, 5) {
|
|
include(qjson/qjson.pri)
|
|
}
|
|
|
|
RESOURCES += $$PWD/webui.qrc
|