Boost の date_time ライブラリをビルドして Makefile にリンクできるようにしようとしています。私は "libs/date_time/build" にいて、孤独な "Jamfile.v2" を参照しています。jam と入力すると、次のようになります。
Jamfile: No such file or directory
...found 7 target(s)...
Boost のドキュメントに date_time のインストールに関する情報が見つかりません。
ドキュメント内のテキストは次のとおりです。
# 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 ;
boost-install boost_date_time ;
ありがとう、ジョー