Boost C++ Libraries

“...one of the most highly regarded and expertly designed C++ library projects in the world.” Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Can I get output of external program as a variable in a Jamfile?

The SHELL builtin can be used for the purpose:

local gtk_includes = [ SHELL "gtk-config --cflags" ] ;

PrevUpHomeNext