1
2project
3    : requirements <library>../build//boost_program_options
4      <hardcode-dll-paths>true
5      <link>static
6    ;
7
8exe first : first.cpp ;
9exe options_description : options_description.cpp ;
10exe multiple_sources : multiple_sources.cpp ;
11exe custom_syntax : custom_syntax.cpp ;
12
13exe real : real.cpp ;
14exe regex : regex.cpp /boost/regex//boost_regex ;
15
16# The following examples use C++ features beyond C++03.
17# It would be possible to make compilation of each conditional on specific config check,
18# for now just disable the compilation.
19#exe config_file_types : config_file_types.cpp ;
20#exe env_options : env_options.cpp ;
21#exe options_heirarchy : options_heirarchy.cpp ;
22