build: fail finding FAudio silently

Change the find_package() call for FAudio to QUIET to not show a giant
warning when it's not available.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2024-04-14 10:09:37 +00:00
parent 795f25bb85
commit 50d17363ea
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ endif()
set(ENABLE_FAUDIO_DEFAULT OFF)
find_package(FAudio)
find_package(FAudio QUIET)
if(FAudio_FOUND)
set(ENABLE_FAUDIO_DEFAULT ON)