Files
type_erasure/build/Jamfile.v2
2025-04-17 09:18:58 -05:00

23 lines
704 B
Plaintext

# Boost.TypeErasure library
#
# Copyright 2015 Steven Watanabe
#
# 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)
constant boost_dependencies_private :
/boost/thread//boost_thread
;
project
: source-location ../src
: common-requirements <include>../include <library>$(boost_dependencies)
: requirements <link>shared:<define>BOOST_TYPE_ERASURE_DYN_LINK
<library>$(boost_dependencies_private)
: usage-requirements <link>shared:<define>BOOST_TYPE_ERASURE_DYN_LINK
<define>BOOST_TYPE_ERASURE_NO_LIB=1
;
lib boost_type_erasure : dynamic_binding.cpp /boost/thread//boost_thread ;