mirror of
https://github.com/boostorg/date_time.git
synced 2026-02-23 03:32:16 +00:00
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
# (C) Copyright 2002. Permission to copy, use, modify, sell and
|
|
# distribute this software is granted provided this copyright notice appears
|
|
# in all copies. This software is provided "as is" without express or implied
|
|
# warranty, and with no claim as to its suitability for any purpose.
|
|
#
|
|
#
|
|
# Boost.date_time build and test Jamfile
|
|
#
|
|
# Based on boost.python Jamfile
|
|
#
|
|
# To run all tests quietly: jam test
|
|
#
|
|
# Declares the following targets:
|
|
# 1. libboost_date_time, a static link library to be linked with all
|
|
# Boost.date_time modules
|
|
#
|
|
|
|
project boost/date_time
|
|
: requirements
|
|
<define>DATE_TIME_INLINE
|
|
<link>shared:<define>BOOST_ALL_DYN_LINK=1
|
|
<link>static:<define>BOOST_DATE_TIME_STATIC_LINK
|
|
: usage-requirements
|
|
<define>DATE_TIME_INLINE
|
|
<link>shared:<define>BOOST_DATE_TIME_DYN_LINK=1
|
|
: source-location ../src
|
|
;
|
|
|
|
# Base names of the source files for libboost_date_time
|
|
CPP_SOURCES = greg_month greg_weekday date_generators ;
|
|
|
|
lib boost_date_time : gregorian/$(CPP_SOURCES).cpp ;
|
|
|