I'm building and linking a project against Boost shared libraries. Now: How do I put these libraries into the target application's install directory? I need this, because the application is going to be installed inside a container without the proper Boost version.
What I tried in multiple variants is:
install(PROGRAMS ${Boost_LIBRARIES} DESTINATION install/lib)
But neither this nor any other variant I could think of gives me the actual shared library file names.