kdeconnect-kde/plugins/systemvolume/CMakeLists.txt
Jun Bo Bi 929fd062f2 Added Windows support to systemvolume plugin
Summary: I've added Windows support to the systemvolume plugin.

Test Plan: Move the volume sliders in the Android app

Reviewers: kdeconnect, #kde_connect, albertvaka

Reviewed By: #kde_connect, albertvaka

Subscribers: albertvaka, kdeconnect

Tags: #kde_connect, #windows

Maniphest Tasks: T10000

Differential Revision: https://phabricator.kde.org/D16936
2018-11-20 01:15:10 +01:00

25 lines
565 B
CMake

if(WIN32)
set(kdeconnect_systemvolume_SRCS
systemvolumeplugin-win.cpp
)
else()
set(kdeconnect_systemvolume_SRCS
systemvolumeplugin-pulse.cpp
)
endif()
kdeconnect_add_plugin(kdeconnect_systemvolume JSON kdeconnect_systemvolume.json SOURCES ${kdeconnect_systemvolume_SRCS})
if(WIN32)
target_link_libraries(kdeconnect_systemvolume
kdeconnectcore
Qt5::Core
ole32
)
else()
target_link_libraries(kdeconnect_systemvolume
kdeconnectcore
Qt5::Core
KF5::PulseAudioQt
)
endif()