2018-11-20 00:14:17 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(kdeconnect_systemvolume_SRCS
|
|
|
|
systemvolumeplugin-win.cpp
|
|
|
|
)
|
2019-07-02 13:37:01 +01:00
|
|
|
elseif(APPLE)
|
|
|
|
set(kdeconnect_systemvolume_SRCS
|
|
|
|
systemvolumeplugin-macos.cpp
|
|
|
|
)
|
2018-11-20 00:14:17 +00:00
|
|
|
else()
|
|
|
|
set(kdeconnect_systemvolume_SRCS
|
|
|
|
systemvolumeplugin-pulse.cpp
|
|
|
|
)
|
|
|
|
endif()
|
Add systemvolume plugin
Summary: This plugin allows controlling the system value from a remote device.
Test Plan: Apply Android patch, open up MPRIS Activity and play with the slider
Reviewers: #kde_connect, mtijink, albertvaka
Reviewed By: #kde_connect, albertvaka
Subscribers: kdeconnect, apol, zhigalin, albertvaka, davidedmundson, mtijink, #kde_connect
Tags: #kde_connect
Maniphest Tasks: T4659
Differential Revision: https://phabricator.kde.org/D7992
2018-07-27 07:39:46 +01:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
set(debug_file_SRCS)
|
|
|
|
ecm_qt_declare_logging_category(
|
|
|
|
debug_file_SRCS HEADER plugin_systemvolume_debug.h
|
|
|
|
IDENTIFIER KDECONNECT_PLUGIN_SYSTEMVOLUME CATEGORY_NAME kdeconnect.plugin.systemvolume
|
|
|
|
DEFAULT_SEVERITY Warning
|
|
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin systemvolume)")
|
2021-06-28 19:33:52 +01:00
|
|
|
kdeconnect_add_plugin(kdeconnect_systemvolume SOURCES ${kdeconnect_systemvolume_SRCS} ${debug_file_SRCS})
|
Add systemvolume plugin
Summary: This plugin allows controlling the system value from a remote device.
Test Plan: Apply Android patch, open up MPRIS Activity and play with the slider
Reviewers: #kde_connect, mtijink, albertvaka
Reviewed By: #kde_connect, albertvaka
Subscribers: kdeconnect, apol, zhigalin, albertvaka, davidedmundson, mtijink, #kde_connect
Tags: #kde_connect
Maniphest Tasks: T4659
Differential Revision: https://phabricator.kde.org/D7992
2018-07-27 07:39:46 +01:00
|
|
|
|
2018-11-20 00:14:17 +00:00
|
|
|
if(WIN32)
|
|
|
|
target_link_libraries(kdeconnect_systemvolume
|
|
|
|
kdeconnectcore
|
2022-10-29 15:51:41 +01:00
|
|
|
Qt::Core
|
2018-11-20 00:14:17 +00:00
|
|
|
ole32
|
|
|
|
)
|
2020-11-24 14:58:33 +00:00
|
|
|
target_sources(kdeconnect_systemvolume
|
|
|
|
PRIVATE
|
|
|
|
PolicyConfig.h)
|
2019-07-02 13:37:01 +01:00
|
|
|
elseif(APPLE)
|
|
|
|
target_link_libraries(kdeconnect_systemvolume
|
|
|
|
kdeconnectcore
|
2022-10-29 15:51:41 +01:00
|
|
|
Qt::Core
|
2019-07-02 13:37:01 +01:00
|
|
|
"-framework CoreAudio"
|
|
|
|
)
|
2018-11-20 00:14:17 +00:00
|
|
|
else()
|
|
|
|
target_link_libraries(kdeconnect_systemvolume
|
|
|
|
kdeconnectcore
|
2022-10-29 15:51:41 +01:00
|
|
|
Qt::Core
|
2023-04-15 11:57:52 +01:00
|
|
|
KF${QT_MAJOR_VERSION}::PulseAudioQt
|
2018-11-20 00:14:17 +00:00
|
|
|
)
|
|
|
|
endif()
|