diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-10-10 17:02:00 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-10-10 17:02:00 +0800 |
commit | 8cd24e8bc493d0f182bae70726b34d8ec8da3f1f (patch) | |
tree | 776b52c4304fa777f865daa02c71660bfe1698c6 /indra/cmake/Boost.cmake | |
parent | ac7e14c1ab1fd08b9bc00170240e39863ac429be (diff) |
Use MacPorts' Boost 1.88 instead of its Boost 1.87
Now that MacPorts' newest Boost version is 1.88.
Diffstat (limited to 'indra/cmake/Boost.cmake')
-rw-r--r-- | indra/cmake/Boost.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/cmake/Boost.cmake b/indra/cmake/Boost.cmake index 8459214f59..0d5137304b 100644 --- a/indra/cmake/Boost.cmake +++ b/indra/cmake/Boost.cmake @@ -6,8 +6,8 @@ include_guard() add_library( ll::boost INTERFACE IMPORTED ) if (DARWIN) - target_include_directories( ll::boost SYSTEM INTERFACE /opt/local/libexec/boost/1.87/include) - target_link_directories( ll::boost INTERFACE /opt/local/libexec/boost/1.87/lib) + target_include_directories( ll::boost SYSTEM INTERFACE /opt/local/libexec/boost/1.88/include) + target_link_directories( ll::boost INTERFACE /opt/local/libexec/boost/1.88/lib) set(sfx -mt) elseif (WINDOWS) target_include_directories( ll::boost SYSTEM INTERFACE ${prefix_result}/../include) |