Fix Boost library suffix for macOS Homebrew

Homebrew's Boost libraries don't use the -mt suffix
(e.g. libboost_filesystem.dylib, not libboost_filesystem-mt.dylib).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 03:15:13 -07:00
parent 9a5c9bd14b
commit 379107ca60
+1 -1
View File
@@ -446,7 +446,7 @@ OTHER_FILES += \
# platform specific defaults, if not overridden on command line
isEmpty(BOOST_LIB_SUFFIX) {
macx:BOOST_LIB_SUFFIX = -mt
macx:BOOST_LIB_SUFFIX =
windows:BOOST_LIB_SUFFIX = -mt
}