Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/signals/build/Jamfile.v2 @ 29

Last change on this file since 29 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 628 bytes
Line 
1# Boost.Signals Library
2
3# Copyright Douglas Gregor 2001-2003. Use, modification and
4# distribution is subject to the Boost Software License, Version
5# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6# http://www.boost.org/LICENSE_1_0.txt)
7
8# For more information, see http://www.boost.org
9
10project boost/signals
11    : source-location ../src
12    ;
13
14# Base names of the source files for libboost_signals
15SOURCES = trackable connection named_slot_map signal_base slot ;
16
17lib boost_signals : $(SOURCES).cpp
18    :         
19        <define>BOOST_SIGNALS_NO_LIB=1
20        <link>shared:<define>BOOST_SIGNALS_DYN_LINK=1
21    ;
Note: See TracBrowser for help on using the repository browser.