Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/filesystem/build/Jamfile.v2 @ 69

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

updated boost from 1_33_1 to 1_34_1

File size: 701 bytes
Line 
1# Boost Filesystem Library Build Jamfile
2
3# (C) Copyright Beman Dawes 2002, 2006
4
5# Distributed under the Boost Software License, Version 1.0.
6# (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
7
8# See library home page at http://www.boost.org/libs/filesystem
9
10project boost/filesystem
11    :
12    source-location ../src
13    ;
14
15SOURCES =
16    exception operations path portability utf8_codecvt_facet ;
17
18lib boost_filesystem
19    :
20    $(SOURCES).cpp
21    :
22    <link>shared:<define>BOOST_FILESYSTEM_DYN_LINK=1 # tell source we're building dll's
23    ;
24
25install dist-lib
26    :
27    boost_filesystem
28    :
29    <install-type>LIB
30    <location>../../../dist/lib
31    ;
32
33explicit dist-lib ;
Note: See TracBrowser for help on using the repository browser.