2
0
mirror of https://github.com/boostorg/signals.git synced 2026-01-19 04:42:10 +00:00
Files
signals/build/Jamfile.v2
Vladimir Prus 002bc02184 Make sure every library can be installed by using
bjam stage|install

in libs/<library>/build.


[SVN r40475]
2007-10-26 09:04:25 +00:00

23 lines
658 B
Plaintext

# Boost.Signals Library
# Copyright Douglas Gregor 2001-2003. Use, modification and
# distribution is subject to 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)
# For more information, see http://www.boost.org
project boost/signals
: source-location ../src
;
# Base names of the source files for libboost_signals
SOURCES = trackable connection named_slot_map signal_base slot ;
lib boost_signals : $(SOURCES).cpp
:
<define>BOOST_SIGNALS_NO_LIB=1
<link>shared:<define>BOOST_SIGNALS_DYN_LINK=1
;
boost-install boost_signals ;