I have a boost.build (version 2) project that builds my executable correctly. I would like to be able to invoke the build outside the project's directory. What steps are required to configure bjam to perform this task?
Thanks,
Erik Illescas
Running bjam outside of a project
2006-11-30 09:30:02
> I have a boost.build (version 2) project that builds my
executable
> correctly. I would like to be able to invoke the build
outside the
> project's directory. What steps are required to
configure bjam to perform
> this task?
I usually use the following to build my projects:
%BOOST_ROOT%bjam --v2 -d0 ..
(note the two dots at the end - they are the relative path
from the
current directory to Jamfile.v2)
--
Bojan Resnik
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>