summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dimov <pdimov@pdimov.com>2017-07-01 04:39:16 +0300
committerPeter Dimov <pdimov@pdimov.com>2017-07-01 04:39:16 +0300
commit1d6bfd09902817ed54eb843da51ff781458596bd (patch)
tree1e1f9f11ebf8524ce03362a7f2dc3c4c296c9974
parentedd26fbb40215e8bb4e8eb76928776c3cb5ed2a2 (diff)
downloadboost-1d6bfd09902817ed54eb843da51ff781458596bd.tar.gz
Make Boost.Exception header-only
-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 ;