kdeconnect-kde/plugins/systemvolume/CMakeLists.txt
Andreas Sturmlechner 79bc9a85e4 Cleanup all occurences of QT_MAJOR_VERSION in cmake
Follow-up to 7f03aa548c

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2023-12-28 17:49:07 +01:00

36 lines
800 B
CMake

if(WIN32)
set(kdeconnect_systemvolume_SRCS
systemvolumeplugin-win.cpp
)
elseif(APPLE)
set(kdeconnect_systemvolume_SRCS
systemvolumeplugin-macos.cpp
)
else()
set(kdeconnect_systemvolume_SRCS
systemvolumeplugin-pulse.cpp
)
endif()
kdeconnect_add_plugin(kdeconnect_systemvolume SOURCES ${kdeconnect_systemvolume_SRCS})
if(WIN32)
target_link_libraries(kdeconnect_systemvolume
kdeconnectcore
Qt::Core
ole32
)
elseif(APPLE)
target_link_libraries(kdeconnect_systemvolume
kdeconnectcore
Qt::Core
"-framework CoreAudio"
"-framework CoreFoundation"
)
else()
target_link_libraries(kdeconnect_systemvolume
kdeconnectcore
Qt::Core
KF6::PulseAudioQt
)
endif()