Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / date_time / example / Jamfile
1 project libs/date_time/example 
2     : requirements
3       <link>static:<define>BOOST_DATE_TIME_STATIC_LINK
4       <library>../build//boost_date_time
5     ;
6
7 exe dates_as_strings   : gregorian/dates_as_strings.cpp ;
8 exe days_alive         : gregorian/days_alive.cpp ;
9 exe days_till_new_year : gregorian/days_till_new_year.cpp ;
10
11 exe days_between_new_years  : gregorian/days_between_new_years.cpp ;
12 exe find_last_day_of_months : gregorian/find_last_day_of_months.cpp ;
13
14 exe month_add : gregorian/month_add.cpp ;
15
16 exe localization   : gregorian/localization.cpp ;
17 exe print_holidays : gregorian/print_holidays.cpp ;
18 exe print_month    : gregorian/print_month.cpp ;
19 exe period_calc    : gregorian/period_calc.cpp ;
20
21 exe days_since_year_start : gregorian/days_since_year_start.cpp ;
22
23 exe local_utc_conversion : posix_time/local_utc_conversion.cpp
24                 : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG  
25                 ;
26
27 exe print_hours : posix_time/print_hours.cpp
28                 : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG  
29                 ;
30
31 exe time_math   : posix_time/time_math.cpp
32                 : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG  
33                 ;
34
35 exe time_periods : posix_time/time_periods.cpp
36                  : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG  
37                  ;
38
39 exe simple_time_zone : local_time/simple_time_zone.cpp ;
40 exe calc_rules       : local_time/calc_rules.cpp ;
41 exe seconds_since_epoch : local_time/seconds_since_epoch.cpp ;
42 exe flight      : local_time/flight.cpp ;
43 exe io_tutorial : tutorial/io_tutorial.cpp ;
44
45 # Copyright (c) 2002-2005
46 # CrystalClear Software, Inc.
47 # Subject to the Boost Software License, Version 1.0. 
48 # (See accompanying file LICENSE_1_0.txt or 
49 # http://www.boost.org/LICENSE_1_0.txt)
50