mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
cmake: Silence warnings.
This commit is contained in:
@ -49,7 +49,7 @@ if(ENABLE_PULSEAUDIO)
|
||||
# PulseAudio ships with a PulseAudioConfig.cmake with no imported target
|
||||
# So we use our own FindPulseAudio instead with "MODULE"
|
||||
find_package(PulseAudio MODULE QUIET)
|
||||
if(PULSEAUDIO_FOUND)
|
||||
if(PulseAudio_FOUND)
|
||||
message(STATUS "PulseAudio found, enabling PulseAudio sound backend")
|
||||
target_sources(audiocommon PRIVATE
|
||||
PulseAudioStream.cpp
|
||||
|
@ -635,7 +635,7 @@ if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||
option(ENABLE_BLUEZ "Enables bluetooth support" ON)
|
||||
if(ENABLE_BLUEZ)
|
||||
find_package(BlueZ)
|
||||
if(BLUEZ_FOUND)
|
||||
if(BlueZ_FOUND)
|
||||
message(STATUS "BlueZ found, enabling bluetooth support")
|
||||
target_sources(core PRIVATE
|
||||
HW/WiimoteReal/IOLinux.cpp
|
||||
|
Reference in New Issue
Block a user