mirror of
https://github.com/boostorg/type_erasure.git
synced 2026-01-19 04:42:14 +00:00
23 lines
704 B
Plaintext
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 ;
|