2006-11-07 02:19:13 +00:00
|
|
|
# Boost System Library Build Jamfile
|
|
|
|
|
|
|
|
|
|
# (C) Copyright Beman Dawes 2002, 2006
|
|
|
|
|
|
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
|
|
|
# (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
2021-01-20 16:35:23 +05:30
|
|
|
# See library home page at https://www.boost.org/libs/system
|
2006-11-07 02:19:13 +00:00
|
|
|
|
|
|
|
|
project boost/system
|
|
|
|
|
: source-location ../src
|
2007-09-14 02:00:25 +00:00
|
|
|
: usage-requirements # pass these requirement to dependents (i.e. users)
|
2007-09-11 01:11:03 +00:00
|
|
|
<link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
|
|
|
|
|
<link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
|
2006-11-07 02:19:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
SOURCES = error_code ;
|
|
|
|
|
|
|
|
|
|
lib boost_system
|
|
|
|
|
: $(SOURCES).cpp
|
|
|
|
|
: <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
|
|
|
|
|
<link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
|
|
|
|
|
;
|
2007-10-26 09:04:25 +00:00
|
|
|
|
2018-10-04 21:13:56 +03:00
|
|
|
boost-install boost_system ;
|