Skip to content

Commit

Permalink
added default option for pmr (for clang 13 & 14)
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed Oct 18, 2023
1 parent 6c27a8b commit f967037
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ project : requirements
;


feature.feature boost.cobalt.pmr : std boost-container custom no : propagated composite ;
feature.feature boost.cobalt.pmr : default std boost-container custom no : propagated composite ;
feature.compose <boost.cobalt.pmr>default : ;
feature.compose <boost.cobalt.pmr>std : <define>BOOST_COBALT_USE_STD_PMR=1 ;
feature.compose <boost.cobalt.pmr>boost-container : <define>BOOST_COBALT_USE_BOOST_CONTAINER_PMR=1 ;
feature.compose <boost.cobalt.pmr>custom : <define>BOOST_COBALT_USE_CUSTOM_PMR=1 ;
Expand Down Expand Up @@ -55,7 +56,10 @@ lib boost_cobalt
: usage-requirements
<link>shared:<define>BOOST_COBALT_DYN_LINK=1
<boost.cobalt.pmr>boost-container:<library>/boost//container
;
<boost.cobalt.pmr>default,<toolset>clang-15:<library>/boost//container
<boost.cobalt.pmr>default,<toolset>clang-14:<library>/boost//container
<link>shared:<define>BOOST_COBALT_DYN_LINK=1
;

boost-install boost_cobalt ;

0 comments on commit f967037

Please sign in to comment.