summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authororbea <orbea@riseup.net>2020-09-08 20:24:34 -0700
committerorbea <orbea@riseup.net>2020-09-08 21:18:40 -0700
commit2bfbc4d79f5fb634ad2822f96d18f28cebcc8574 (patch)
treefbdc29ec288f646743bd2c69c0affe8180dd22a5 /Source/Core
parent67761c7d313193d88d5262483aaeda5e47f0980f (diff)
cmake: Silence warnings.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/AudioCommon/CMakeLists.txt2
-rw-r--r--Source/Core/Core/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/AudioCommon/CMakeLists.txt b/Source/Core/AudioCommon/CMakeLists.txt
index 908c60ed5e..87b6abce81 100644
--- a/Source/Core/AudioCommon/CMakeLists.txt
+++ b/Source/Core/AudioCommon/CMakeLists.txt
@@ -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
diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt
index a3f3f4dc93..62c3a36174 100644
--- a/Source/Core/Core/CMakeLists.txt
+++ b/Source/Core/Core/CMakeLists.txt
@@ -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