Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/date_time/build/Jamfile.v2 @ 12

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

added boost

File size: 1.1 KB
Line 
1#  (C) Copyright  2002. Permission to copy, use, modify, sell and
2#  distribute this software is granted provided this copyright notice appears
3#  in all copies. This software is provided "as is" without express or implied
4#  warranty, and with no claim as to its suitability for any purpose.
5#
6#
7# Boost.date_time build and test Jamfile
8#
9#  Based on boost.python Jamfile
10#
11# To run all tests quietly: jam test
12#
13# Declares the following targets:
14#   1. libboost_date_time, a static link library to be linked with all
15#      Boost.date_time modules
16#
17
18
19project boost/date_time
20    : requirements
21        <define>DATE_TIME_INLINE
22        <link>shared:<define>BOOST_ALL_DYN_LINK=1       
23        <link>static:<define>BOOST_DATE_TIME_STATIC_LINK       
24    : usage-requirements       
25        <define>DATE_TIME_INLINE
26        <link>shared:<define>BOOST_DATE_TIME_DYN_LINK=1
27    : source-location ../src
28    ;
29
30# Base names of the source files for libboost_date_time
31CPP_SOURCES = greg_month greg_weekday date_generators ;
32
33lib boost_date_time : gregorian/$(CPP_SOURCES).cpp ;
34
35boost-install boost_date_time ;
Note: See TracBrowser for help on using the repository browser.