mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-09 00:52:30 -06:00
This provides a mechanism for persisting WebUI client preferences that are distinct from the broader qBittorrent preferences. These preferences apply exclusively to the WebUI. PR #23088.
44 lines
1.0 KiB
CMake
44 lines
1.0 KiB
CMake
add_library(qbt_webui STATIC
|
|
# headers
|
|
api/apicontroller.h
|
|
api/apierror.h
|
|
api/apistatus.h
|
|
api/appcontroller.h
|
|
api/authcontroller.h
|
|
api/clientdatacontroller.h
|
|
api/isessionmanager.h
|
|
api/logcontroller.h
|
|
api/rsscontroller.h
|
|
api/searchcontroller.h
|
|
api/synccontroller.h
|
|
api/torrentcreatorcontroller.h
|
|
api/torrentscontroller.h
|
|
api/transfercontroller.h
|
|
api/serialize/serialize_torrent.h
|
|
clientdatastorage.h
|
|
webapplication.h
|
|
webui.h
|
|
|
|
# sources
|
|
api/apicontroller.cpp
|
|
api/apierror.cpp
|
|
api/appcontroller.cpp
|
|
api/authcontroller.cpp
|
|
api/clientdatacontroller.cpp
|
|
api/logcontroller.cpp
|
|
api/rsscontroller.cpp
|
|
api/searchcontroller.cpp
|
|
api/synccontroller.cpp
|
|
api/torrentcreatorcontroller.cpp
|
|
api/torrentscontroller.cpp
|
|
api/transfercontroller.cpp
|
|
api/serialize/serialize_torrent.cpp
|
|
clientdatastorage.cpp
|
|
webapplication.cpp
|
|
webui.cpp
|
|
)
|
|
|
|
target_sources(qbt_webui INTERFACE www/webui.qrc)
|
|
|
|
target_link_libraries(qbt_webui PRIVATE qbt_base)
|