Никак не могу найти в документации как задавать абсолютные пути.
например в документации пишут:
When bjam is invoked, it always needs to be able to find the Boost.Build root directory, where the interpreted
source code of Boost.Build is located. There are two ways to tell bjam about the root directory:
• Set the environment variable BOOST_BUILD_PATH to the absolute path of the Boost.Build root
directory.
• At the root directory of your project or in any of its parent directories, create a file called boostbuild.
jam, with a single line:
boost-build /path/to/boost.build ;
что делать если /path/to/boost.build абсолютный(например хочу использовать один для всех проэктов)?
пытался так:
boost-build C:\...\Build\v2 ;
при запуске bjam пытаеться склеить текущий путь с C:\...\Build\v2
такая же проблема возникла и с подключением инклудов.