From 50230b9ad76ead5a85da878d523e16401108828a Mon Sep 17 00:00:00 2001 From: JPikachu Date: Sat, 1 Nov 2025 12:51:41 +0000 Subject: [PATCH] fix building attempt :) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index de0c7ef36e..8b7cd28001 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -471,7 +471,7 @@ if (YUZU_USE_CPM) target_compile_options(boost_asio INTERFACE -Wno-conversion -Wno-implicit-fallthrough) endif() elseif (PLATFORM_LINUX OR APPLE) - find_package(Boost 1.57.0 REQUIRED headers context system fiber) + find_package(Boost 1.57.0 REQUIRED COMPONENTS context fiber) endif() # fmt @@ -535,7 +535,7 @@ else() # wow if (PLATFORM_LINUX OR APPLE) - find_package(Boost 1.57.0 REQUIRED headers context system fiber) + find_package(Boost 1.57.0 REQUIRED COMPONENTS context fiber) else() find_package(Boost 1.57.0 REQUIRED) endif()