summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmake/Jamfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/Jamfile b/cmake/Jamfile
index 4df20b3b4a..b41cd70c26 100644
--- a/cmake/Jamfile
+++ b/cmake/Jamfile
@@ -392,8 +392,9 @@ for dir in $(library-dirs)
local config-targets ;
# boost_math, a dependency of lexical_cast, has six optional libraries, none of which named boost_math
+ # boost_exception has an optional MSVC-only library, which creates problems under Linux
- if [ exists $(dir)/build ] && [ exists $(dir)/src ] && $(name) != "math"
+ if [ exists $(dir)/build ] && [ exists $(dir)/src ] && $(name) != "math" && $(name) != "exception"
{
.info Library $(name) is not header-only ;