Jamfile.v2 702 B

1234567891011121314151617181920
  1. # Copyright (c) 2002-2006 CrystalClear Software, Inc.
  2. # Use, modification and distribution is subject to the
  3. # Boost Software License, Version 1.0. (See accompanying
  4. # file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  5. #
  6. project
  7. : requirements <library>../../build/boost_date_time
  8. ;
  9. exe dates_as_strings : dates_as_strings.cpp ;
  10. exe end_of_month_day : end_of_month_day.cpp ;
  11. exe period_calc : period_calc.cpp ;
  12. exe days_alive : days_alive.cpp ;
  13. exe print_holidays : print_holidays.cpp ;
  14. exe days_since_year_start : days_since_year_start.cpp ;
  15. exe print_month : print_month.cpp ;
  16. exe days_till_new_year : days_till_new_year.cpp ;
  17. exe date_localization : localization.cpp ;