Compare commits

...

1 commit

Author SHA1 Message Date
4560f025e1
[cmake] proper link to Boost::context
Some checks failed
eden-license / license-header (pull_request) Failing after 25s
Signed-off-by: crueter <crueter@eden-emu.dev>
2025-10-03 23:27:32 -04:00

View file

@ -423,6 +423,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
@ -521,7 +523,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)