Update Jamfile to generate dependencies

This commit is contained in:
Peter Dimov
2017-06-24 03:45:04 +03:00
parent 49b3580adf
commit c306d479e8
2 changed files with 19 additions and 0 deletions

View File

@ -2,3 +2,19 @@
install BoostVersion_ : ../../../BoostVersion.cmake : <location>. ;
install default_ : ../../../cmake/default.cmake : <location>. ;
# Update dependencies
import path ;
path-constant LIBDIR : .. ;
actions boostdep-cmake
{
"$(LIBDIR)/../../dist/bin/boostdep" --cmake $(LIBDIR:B) > $(1)
}
make dependencies.cmake : : @boostdep-cmake ;
always dependencies.cmake ;
install dependencies_ : dependencies.cmake : <location>. ;

View File

@ -1,5 +1,8 @@
# Generated file. Do not edit.
boost_declare_dependency(boost_assert PUBLIC boost::assert)
boost_declare_dependency(boost_config PUBLIC boost::config)
boost_declare_dependency(boost_core PUBLIC boost::core)
boost_declare_dependency(boost_predef PUBLIC boost::predef)
boost_declare_dependency(boost_winapi PUBLIC boost::winapi)