Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/date_time/example/Jamfile @ 14

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

added boost

File size: 3.9 KB
Line 
1subproject libs/date_time/example ;
2
3local DATE_TIME_PROPERTIES = <define>BOOST_DATE_TIME_STATIC_LINK ;
4
5
6exe dates_as_strings : <lib>../build/boost_date_time
7                    gregorian/dates_as_strings.cpp
8                  : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES) 
9                  ;
10
11exe days_alive : <lib>../build/boost_date_time
12                  gregorian/days_alive.cpp
13                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
14                ;
15
16exe days_till_new_year : <lib>../build/boost_date_time
17                  gregorian/days_till_new_year.cpp
18                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
19                ;
20
21exe days_between_new_years : <lib>../build/boost_date_time
22                  gregorian/days_between_new_years.cpp
23                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
24                ;
25
26exe find_last_day_of_months : <lib>../build/boost_date_time
27                  gregorian/find_last_day_of_months.cpp
28                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
29                ;
30
31exe month_add : <lib>../build/boost_date_time
32                  gregorian/month_add.cpp
33                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
34                ;
35
36exe localization : gregorian/localization.cpp
37                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
38                ;
39
40exe print_holidays : <lib>../build/boost_date_time
41                  gregorian/print_holidays.cpp
42                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
43                ;
44
45exe print_month : <lib>../build/boost_date_time
46                  gregorian/print_month.cpp
47                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
48                ;
49
50exe period_calc : <lib>../build/boost_date_time
51                  gregorian/period_calc.cpp
52                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
53                ;
54
55exe days_since_year_start : <lib>../build/boost_date_time
56                  gregorian/days_since_year_start.cpp
57                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
58                ;
59
60exe local_utc_conversion : <lib>../build/boost_date_time
61                  posix_time/local_utc_conversion.cpp
62                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES) <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG 
63                ;
64
65exe print_hours : <lib>../build/boost_date_time
66                  posix_time/print_hours.cpp
67                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES) <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG 
68                ;
69
70exe time_math : <lib>../build/boost_date_time
71                  posix_time/time_math.cpp
72                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES) <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG 
73                ;
74
75exe time_periods : <lib>../build/boost_date_time
76                  posix_time/time_periods.cpp
77                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES) <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG 
78                ;
79
80exe simple_time_zone : <lib>../build/boost_date_time
81                  local_time/simple_time_zone.cpp
82                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
83                ;
84
85exe calc_rules : <lib>../build/boost_date_time
86                  local_time/calc_rules.cpp
87                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
88                ;
89
90exe seconds_since_epoch : <lib>../build/boost_date_time
91                  local_time/seconds_since_epoch.cpp
92                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
93                ;
94
95exe flight : <lib>../build/boost_date_time
96                  local_time/flight.cpp
97                : <include>$(BOOST_ROOT) $(DATE_TIME_PROPERTIES)
98                ;
99
100exe io_tutorial : tutorial/io_tutorial.cpp
101                : <include>$(BOOST_ROOT)
102                ;
103
104# Copyright (c) 2002-2005
105# CrystalClear Software, Inc.
106# Subject to the Boost Software License, Version 1.0.
107# (See accompanying file LICENSE-1.0 or
108# http://www.boost.org/LICENSE-1.0)
109
Note: See TracBrowser for help on using the repository browser.