mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
24 lines
420 B
Text
24 lines
420 B
Text
![]() |
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}
|
||
|
)
|