ed1e24d231
This is far less code and allows for an easier enforcing of standards, for example the name of the log identifiers which were adjusted in a few cases. Also clean up unused includes when noticed.
36 lines
818 B
CMake
36 lines
818 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
|
|
KF${QT_MAJOR_VERSION}::PulseAudioQt
|
|
)
|
|
endif()
|