From ea6c3c379cd7c4584e346ff7810be0386b6584a8 Mon Sep 17 00:00:00 2001 From: JPikachu Date: Sat, 1 Nov 2025 03:49:08 +0100 Subject: [PATCH] [cmake] Re-enable cubeb for FreeBSD (#2916) Co-authored-by: JPikachu Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2916 Reviewed-by: Lizzie Reviewed-by: MaranBr Reviewed-by: Caio Oliveira Co-authored-by: JPikachu Co-committed-by: JPikachu --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 97a6386f02..c9fcb2d085 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,8 +183,7 @@ option(YUZU_USE_QT_MULTIMEDIA "Use QtMultimedia for Camera" OFF) option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF) set(YUZU_QT_MIRROR "" CACHE STRING "What mirror to use for downloading the bundled Qt libraries") -# FreeBSD doesn't have a cubeb port yet, vendoring it isn't required (it's optional anyways) -cmake_dependent_option(ENABLE_CUBEB "Enables the cubeb audio backend" ON "NOT PLATFORM_FREEBSD" OFF) +option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) set(EXT_DEFAULT OFF) if (MSVC OR ANDROID)