]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/program_options/build/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / program_options / build / Jamfile.v2
1
2 project boost/program_options
3 : source-location ../src
4 ;
5
6 SOURCES =
7 cmdline config_file options_description parsers variables_map
8 value_semantic positional_options utf8_codecvt_facet
9 convert winmain split
10 ;
11
12 lib boost_program_options
13 : $(SOURCES).cpp
14 : <link>shared:<define>BOOST_PROGRAM_OPTIONS_DYN_LINK=1 # tell source we're building dll's
15 # See https://svn.boost.org/trac/boost/ticket/5049
16 <target-os>hpux,<toolset>gcc:<define>_INCLUDE_STDC__SOURCE_199901
17 :
18 : <link>shared:<define>BOOST_PROGRAM_OPTIONS_DYN_LINK=1
19 ;
20
21 boost-install boost_program_options ;