mirror of
https://github.com/boostorg/boost.git
synced 2025-04-06 14:05:01 +00:00
Introduce boost-lib helper function.
This commit is contained in:
parent
5b6586c821
commit
5b85bc04a3
1 changed files with 16 additions and 0 deletions
16
Jamroot
16
Jamroot
|
@ -301,6 +301,22 @@ rule boost-install ( libraries * )
|
|||
}
|
||||
}
|
||||
|
||||
# Creates a library target, adding autolink support and also creates
|
||||
# stage and install targets via boost-install, above.
|
||||
rule boost-lib ( name : sources * : requirements * : default-build * : usage-requirements * )
|
||||
{
|
||||
name = boost_$(name) ;
|
||||
autolink = <link>shared:<define>BOOST_$(name:U)_DYN_LINK=1 ;
|
||||
lib $(name)
|
||||
: $(sources)
|
||||
: $(requirements) $(autolink)
|
||||
: $(default-build)
|
||||
: $(usage-requirements) $(autolink)
|
||||
;
|
||||
boost-install $(name) ;
|
||||
}
|
||||
|
||||
|
||||
headers =
|
||||
# The .SUNWCCh files are present in tr1 include directory and have to be
|
||||
# installed (see http://lists.boost.org/Archives/boost/2007/05/121430.php).
|
||||
|
|
Loading…
Add table
Reference in a new issue