diff options
| author | Erik Kundiman <erik@megapahit.org> | 2025-10-03 19:33:48 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2025-10-03 19:33:48 +0800 |
| commit | 7b4759a5e49c310bdc25b76dcc44f533e864896a (patch) | |
| tree | 20b8b512e39f26a11b9c5d517af6a8a75ba8bec8 | |
| parent | 8f11eb47a617d3a1344a39ed37dd1de3b422fb0b (diff) | |
Loosen Boost find_package
It couldn't find Boost now, somehow, at least on Debian Asahi.
| -rw-r--r-- | indra/cmake/Boost.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Boost.cmake b/indra/cmake/Boost.cmake index ba9daeadf1..6fc969a62a 100644 --- a/indra/cmake/Boost.cmake +++ b/indra/cmake/Boost.cmake @@ -18,7 +18,7 @@ elseif (WINDOWS) set(sfx -vc143-mt-x64-1_88) endif () else () - find_package( Boost REQUIRED ) + find_package( Boost ) endif () target_link_libraries( ll::boost INTERFACE boost_context${sfx} |
