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 222d92c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion 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,6 +56,12 @@ 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 ;
Expand Down

0 comments on commit 222d92c

Please sign in to comment.