Skip to content

Commit

Permalink
Move inter-lib dependencies to a project variable and into the build …
Browse files Browse the repository at this point in the history
…targets.
  • Loading branch information
grafikrobot committed Jul 24, 2024
1 parent a902503 commit 5af56ff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.jam
Original file line number Diff line number Diff line change
@@ -5,17 +5,20 @@

require-b2 5.2 ;

constant boost_dependencies :
/boost/config//boost_config
/boost/core//boost_core ;

project /boost/bind
: common-requirements
<library>/boost/config//boost_config
<library>/boost/core//boost_core
<include>include
;

explicit
[ alias boost_bind ]
[ alias boost_bind : : : : <library>$(boost_dependencies) ]
[ alias all : boost_bind test ]
;

call-if : boost-library bind
;

0 comments on commit 5af56ff

Please sign in to comment.