Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
563 B
22 lines
563 B
7 years ago
|
set(BU_CHMOD_BUNDLE_ITEMS ON)
|
||
|
include(DeployQt5)
|
||
|
|
||
|
set(plugins "")
|
||
|
|
||
|
get_property(svgIconPluginLocation TARGET Qt5::QSvgIconPlugin
|
||
|
PROPERTY LOCATION_RELEASE)
|
||
|
list(APPEND plugins "${svgIconPluginLocation}")
|
||
|
get_property(svgPluginLocation TARGET Qt5::QSvgPlugin
|
||
|
PROPERTY LOCATION_RELEASE)
|
||
|
list(APPEND plugins "${svgPluginLocation}")
|
||
|
|
||
|
set(sfx "")
|
||
|
if(APPLE)
|
||
|
set(sfx ".app")
|
||
|
elseif(WIN32)
|
||
|
set(sfx "${CMAKE_EXECUTABLE_SUFFIX}")
|
||
|
endif()
|
||
|
|
||
|
get_target_property(exe qBittorrent OUTPUT_NAME)
|
||
|
install_qt5_executable("${exe}${sfx}" "${plugins}" "" "" "")
|