Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to do an out-of-source build with bjam?

Due to quota restrictions I really need to build a project that I'm working on with all of the temporary files and build products in a separate directory (in my case /tmp/somewhere).

I'm used to doing this with CMake, is it possible with bjam, if so, how?

like image 714
James Avatar asked Jun 22 '10 10:06

James


1 Answers

Yes you can. In your project declaration you can specify the build-dir location to anything you like instead of the default local bin.v2 location (see projects).

like image 166
GrafikRobot Avatar answered Sep 20 '22 19:09

GrafikRobot