mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
8 lines
184 B
CMake
8 lines
184 B
CMake
include_guard()
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(PULSEAUDIO IMPORTED_TARGET libpulse)
|
|
|
|
if (PULSEAUDIO_FOUND)
|
|
set(HAVE_PULSEAUDIO ON CACHE BOOL "" FORCE)
|
|
endif()
|