kde-workspace/plasma/applets/mixer/CMakeLists.txt
Ivailo Monev 6743086952 plasma: new mixer applet
kmix replacement, most importantly - multi-channel!

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-09-21 04:03:29 +03:00

23 lines
420 B
CMake

project(plasma-applet-mixer)
include_directories(${ALSA_INCLUDE_DIR})
set(mixer_SRCS
mixer.cpp
)
kde4_add_plugin(plasma_applet_mixer ${mixer_SRCS})
target_link_libraries(plasma_applet_mixer
KDE4::plasma
${ALSA_LIBRARIES}
)
install(
TARGETS plasma_applet_mixer
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
install(
FILES plasma-applet-mixer.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)