mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-03 14:27:47 +00:00
08c8b9c6d6
Add a new setting to toggle notification sounds on or off. Plays the systems default instant messaging message sound (message-new-instant) whenever a notification is shown if toggled on.
10 lines
275 B
CMake
10 lines
275 B
CMake
include(PkgConfigWithFallback)
|
|
find_pkg_config_with_fallback(Canberra
|
|
PKG_CONFIG_NAME libcanberra
|
|
LIB_NAMES canberra
|
|
INCLUDE_NAMES canberra.h
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Canberra
|
|
REQUIRED_VARS Canberra_LIBRARY)
|