Jamfile.v2 683 B

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