]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/system/build/Jamfile.v2
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / system / build / Jamfile.v2
1 # Boost System Library Build Jamfile
2
3 # (C) Copyright Beman Dawes 2002, 2006
4
5 # Distributed under the Boost Software License, Version 1.0.
6 # (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
7
8 # See library home page at https://www.boost.org/libs/system
9
10 project boost/system
11 : source-location ../src
12 : usage-requirements # pass these requirement to dependents (i.e. users)
13 <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
14 <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
15 ;
16
17 SOURCES = error_code ;
18
19 lib boost_system
20 : $(SOURCES).cpp
21 : <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
22 <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
23 ;
24
25 boost-install boost_system ;