summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/date_time/build/Jamfile.v2
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/date_time/build/Jamfile.v2
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/date_time/build/Jamfile.v2')
-rw-r--r--src/boost/libs/date_time/build/Jamfile.v233
1 files changed, 33 insertions, 0 deletions
diff --git a/src/boost/libs/date_time/build/Jamfile.v2 b/src/boost/libs/date_time/build/Jamfile.v2
new file mode 100644
index 00000000..cacc08a1
--- /dev/null
+++ b/src/boost/libs/date_time/build/Jamfile.v2
@@ -0,0 +1,33 @@
+# Copyright (c) 2002-2005 CrystalClear Software, Inc.
+# Use, modification and distribution is subject to the
+# Boost Software License, Version 1.0. (See accompanying
+# file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
+#
+# 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
+ : 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 ;
+
+boost-install boost_date_time ;