mirror of
https://github.com/boostorg/date_time.git
synced 2026-02-26 16:42:20 +00:00
64 lines
2.0 KiB
Plaintext
64 lines
2.0 KiB
Plaintext
|
|
import boostbook : boostbook ;
|
|
import toolset ;
|
|
import set ;
|
|
toolset.using doxygen ;
|
|
|
|
boostbook date_time : date_time.xml ;
|
|
|
|
boostbook date_time_doc : exclusive_date_time.xml ;
|
|
|
|
# file lists take the form of [ set.difference [ glob include/these ] : [ glob but/not/these ] ]
|
|
|
|
local date_time_files = [ set.difference
|
|
[ glob ../../../boost/date_time/*.hpp ] :
|
|
[ glob ../../../boost/date_time/testfrmwk.hpp
|
|
# ../../../boost/date_time/time_zone_base.hpp
|
|
# ../../../boost/date_time/time_zone_names.hpp
|
|
# ../../../boost/date_time/tz_db_base.hpp
|
|
# ../../../boost/date_time/dst_transition_generators.hpp
|
|
]
|
|
] ;
|
|
|
|
local gregorian_files = [ set.difference
|
|
[ glob ../../../boost/date_time/gregorian/*.hpp ] :
|
|
[ glob ../../../boost/date_time/gregorian/event_schedule.hpp ]
|
|
] ;
|
|
|
|
#ECHO $(date_time_files) ; # useful for debugging
|
|
|
|
# to build the autodoc files, run bjam --v2 autodoc_target. copy generated
|
|
# file from bin.v2 dir to here. run ref_tag_fix.pl.
|
|
|
|
doxygen date_time_autodoc :
|
|
$(date_time_files) :
|
|
<doxygen:param>ENABLE_PREPROCESSING=NO
|
|
;
|
|
|
|
doxygen gregorian_autodoc :
|
|
$(gregorian_files) :
|
|
<doxygen:param>ENABLE_PREPROCESSING=NO
|
|
;
|
|
|
|
doxygen posix_time_autodoc :
|
|
[ glob ../../../boost/date_time/posix_time/*.hpp ] :
|
|
<doxygen:param>ENABLE_PREPROCESSING=NO
|
|
;
|
|
|
|
doxygen local_time_autodoc :
|
|
[ glob ../../../boost/date_time/local_time/*.hpp ] :
|
|
<doxygen:param>ENABLE_PREPROCESSING=NO
|
|
;
|
|
|
|
|
|
# Copyright (c) 2004
|
|
# CrystalClear Software, Inc.
|
|
#
|
|
# Permission to use, copy, modify, distribute and sell this software
|
|
# and its documentation for any purpose is hereby granted without fee,
|
|
# provided that the above copyright notice appear in all copies and
|
|
# that both that copyright notice and this permission notice appear
|
|
# in supporting documentation. CrystalClear Software makes no
|
|
# representations about the suitability of this software for any
|
|
# purpose. It is provided "as is" without express or implied warranty.
|