For any C++ Boost library, how can one find out which Boost library(ies) it requires ?
Example (not necessary a working example though): Boost library "test" requires Boost library "date_time".
Regards,
|
boost comes with a tool to gather the dependencies of a library. It is called bcp. If you just want a list of files, you have to use the --list option. |
|||||
|
|
If you want to find out those dependencies to isolate the components your software requires, you can use bcp (Boost Copy) It copies selected boost libraries and all its dependencies to a target location. Eg
copies the complete Disclaimer: I do not have any practical experience with bcp. EDIT:
If you only want to check on which compiled library a compiled library depends, you can either use |
|||
|
|
#pragma lib), so you rarely have to worry about this. – peachykeen May 30 '12 at 14:57