I am trying to create only a subset of boost libraries. For example, I have this code:
test.cpp:
#include <boost/thread.hpp> int main (){ return 0; }
Then i do
./bcp --scan test.cpp ~/dev/boost_compact/
Thus, dependency files are copied to ~/dev/boost_compact/boost .
Then, following this answer , I copy all the files to the root of the regular promotion, as well as the tools directory and run
./bootstrap ./bjam ./bjam install
This copies all headers to the target directory, but does not create / does not copy libraries. The same set of actions really works in full. What am I doing wrong?
source share