[common] fix fibers by using older boost instead of minicoro #2665

Open
Lizzie wants to merge 3 commits from fix-fibers-2 into master
Showing only changes of commit 0ab8ed90bd - Show all commits

View file

@ -427,6 +427,8 @@ if (YUZU_USE_CPM)
target_compile_options(boost_icl INTERFACE -Wno-shadow)
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)
endif()
# fmt
@ -488,7 +490,7 @@ else()
find_package(zstd 1.5 REQUIRED MODULE)
# wow
if (PLATFORM_LINUX)
if (PLATFORM_LINUX OR APPLE)
find_package(Boost 1.57.0 REQUIRED headers context system fiber)
else()
find_package(Boost 1.57.0 REQUIRED)