]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/poly_collection/example/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / poly_collection / example / Jamfile.v2
1 # Copyright 2016-2017 Joaquín M López Muñoz.
2 # Distributed under the Boost Software License, Version 1.0.
3 # (See accompanying file LICENSE_1_0.txt or copy at
4 # http://www.boost.org/LICENSE_1_0.txt)
5 #
6 # See http://www.boost.org/libs/poly_collection for library home page.
7
8 project
9 : requirements
10 <include>$(BOOST_ROOT)
11 <cxxstd>11
12 ;
13
14 exe algorithms
15 : algorithms.cpp
16 : <cxxstd>14
17 ;
18
19 exe basic_any
20 : basic_any.cpp
21 ;
22
23 exe basic_base
24 : basic_base.cpp
25 ;
26
27 exe basic_function
28 : basic_function.cpp
29 : <cxxstd>14
30 ;
31
32 exe exceptions
33 : exceptions.cpp
34 ;
35
36 exe insertion_emplacement
37 : insertion_emplacement.cpp
38 ;
39
40 exe perf
41 : perf.cpp
42 :
43 : release
44 ;
45
46 exe segmented_structure
47 : segmented_structure.cpp
48 : <cxxstd>14
49 ;