2
0
mirror of https://github.com/boostorg/atomic.git synced 2026-01-19 04:02:09 +00:00
Files
atomic/build/Jamfile.v2
2012-12-15 18:28:27 +00:00

33 lines
647 B
Plaintext

# Boost.Atomic Library Jamfile
#
# Copyright Helge Bahmann 2011.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
import common ;
project boost/atomic
: requirements
<threading>multi
<link>shared:<define>BOOST_ATOMIC_DYN_LINK=1
<define>BOOST_ATOMIC_SOURCE
: usage-requirements
<link>shared:<define>BOOST_ATOMIC_DYN_LINK=1
: source-location ../src
;
alias atomic_sources
: lockpool.cpp
;
explicit atomic_sources ;
lib boost_atomic
: atomic_sources
;
boost-install boost_atomic ;