Does anyone know how to use msvc link options per this website w/ boost.build:
http://msdn.microsoft.com/en-us/library/ms235330.aspx
I tried something like this but it fails horribly:
alias extra : [ obj setargv ] ;
exe test : main.c extra ;
setargv seems to only come packaged as an obj file rather than a lib, does boost.build support this sort of thing? Do I have to manually specify the path to the object in the Visual C distribution?
Thanks,
Chris