Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/serialization/example/Jamfile @ 12

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

added boost

File size: 1.3 KB
Line 
1# Boost serialization Library Build Jamfile
2#  (C) Copyright Robert Ramey 2002-2004.
3#  Use, modification, and distribution are subject to the
4#  Boost Software License, Version 1.0. (See accompanying file
5#  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6#
7#  See http://www.boost.org/libs/serialization for the library home page.
8
9subproject libs/serialization/example ;
10
11rule demo-bsl-build ( demo-name )
12{
13    exe $(demo-name)
14        : # sources
15            $(demo-name).cpp
16            <lib>../build/boost_serialization
17        : # requirements
18            # copy to a path rooted at BOOST_ROOT:
19            <locate>$(BOOST_ROOT)
20            <include>$(BOOST_ROOT) 
21            <sysinclude>$(BOOST_ROOT)
22            <borland><*><cxxflags>-w-8080
23            <msvc><release><cxxflags>-Gy
24            <vc7><release><cxxflags>-Gy
25            <vc-7_0><release><cxxflags>-Gy
26            <vc-7_1><release><cxxflags>-Gy
27        : # default build
28            debug
29    ;
30}
31
32demo-bsl-build demo ;
33demo-bsl-build demo_auto_ptr ;
34demo-bsl-build demo_exception ;
35demo-bsl-build demo_fast_archive ;
36demo-bsl-build demo_pimpl ;
37demo-bsl-build demo_portable_archive ;
38demo-bsl-build demo_shared_ptr ;
39demo-bsl-build demo_xml ;
40demo-bsl-build demo_xml_save ;
41demo-bsl-build demo_xml_load ;
Note: See TracBrowser for help on using the repository browser.