#project 
#    : requirements <library>../build//boost_program_options
#      <hardcode-dll-paths>true
#    ;

path-constant BOOST_INSTALLED_LIB : C:/Boost/lib ; 
path-constant BOOST_INSTALLED_INC : C:/Boost/include/boost-1_35 ; 

path-constant BOOST_ROOT : C:/guido/env/boost/boost_1_35_0 ; 

use-project /boost : $(BOOST_ROOT) ; 

project 
 : requirements <include>$(BOOST_INSTALLED_INC)
 <linkflags>/LIBPATH:$(BOOST_INSTALLED_LIB) 
 ;
 
exe first : first.cpp ;

exe options_description : options_description.cpp ;
exe multiple_sources : multiple_sources.cpp ;
exe custom_syntax : custom_syntax.cpp ;

exe real : real.cpp ;
exe regex : regex.cpp /boost/regex//boost_regex ;
