Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for modular build structure. #5

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
27 changes: 27 additions & 0 deletions build.jam
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright René Ferdinand Rivera Morell 2023-2024
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

require-b2 5.2 ;

constant boost_dependencies :
/boost/config//boost_config
/boost/function_types//boost_function_types
/boost/mpl//boost_mpl
/boost/preprocessor//boost_preprocessor
/boost/type_traits//boost_type_traits ;

project /boost/tti
: common-requirements
<include>include
;

explicit
[ alias boost_tti : : : : <library>$(boost_dependencies) ]
[ alias all : boost_tti test ]
;

call-if : boost-library tti
;

66 changes: 33 additions & 33 deletions doc/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -37,38 +37,38 @@ else

doxygen tti_reference
:
$(here)/../../../boost/tti/has_class.hpp
$(here)/../../../boost/tti/has_data.hpp
$(here)/../../../boost/tti/has_enum.hpp
$(here)/../../../boost/tti/has_function.hpp
$(here)/../../../boost/tti/has_function_template.hpp
$(here)/../../../boost/tti/has_member_data.hpp
$(here)/../../../boost/tti/has_member_function.hpp
$(here)/../../../boost/tti/has_member_function_template.hpp
$(here)/../../../boost/tti/has_static_member_data.hpp
$(here)/../../../boost/tti/has_static_member_function.hpp
$(here)/../../../boost/tti/has_static_member_function_template.hpp
$(here)/../../../boost/tti/has_template.hpp
$(here)/../../../boost/tti/has_type.hpp
$(here)/../../../boost/tti/has_union.hpp
$(here)/../../../boost/tti/member_type.hpp
$(here)/../../../boost/tti/gen/has_class_gen.hpp
$(here)/../../../boost/tti/gen/has_data_gen.hpp
$(here)/../../../boost/tti/gen/has_enum_gen.hpp
$(here)/../../../boost/tti/gen/has_function_gen.hpp
$(here)/../../../boost/tti/gen/has_function_template_gen.hpp
$(here)/../../../boost/tti/gen/has_member_data_gen.hpp
$(here)/../../../boost/tti/gen/has_member_function_gen.hpp
$(here)/../../../boost/tti/gen/has_member_function_template_gen.hpp
$(here)/../../../boost/tti/gen/has_static_member_data_gen.hpp
$(here)/../../../boost/tti/gen/has_static_member_function_gen.hpp
$(here)/../../../boost/tti/gen/has_static_member_function_template_gen.hpp
$(here)/../../../boost/tti/gen/has_template_gen.hpp
$(here)/../../../boost/tti/gen/has_type_gen.hpp
$(here)/../../../boost/tti/gen/has_union_gen.hpp
$(here)/../../../boost/tti/gen/member_type_gen.hpp
$(here)/../../../boost/tti/gen/namespace_gen.hpp
:
$(here)/../include/boost/tti/has_class.hpp
$(here)/../include/boost/tti/has_data.hpp
$(here)/../include/boost/tti/has_enum.hpp
$(here)/../include/boost/tti/has_function.hpp
$(here)/../include/boost/tti/has_function_template.hpp
$(here)/../include/boost/tti/has_member_data.hpp
$(here)/../include/boost/tti/has_member_function.hpp
$(here)/../include/boost/tti/has_member_function_template.hpp
$(here)/../include/boost/tti/has_static_member_data.hpp
$(here)/../include/boost/tti/has_static_member_function.hpp
$(here)/../include/boost/tti/has_static_member_function_template.hpp
$(here)/../include/boost/tti/has_template.hpp
$(here)/../include/boost/tti/has_type.hpp
$(here)/../include/boost/tti/has_union.hpp
$(here)/../include/boost/tti/member_type.hpp
$(here)/../include/boost/tti/gen/has_class_gen.hpp
$(here)/../include/boost/tti/gen/has_data_gen.hpp
$(here)/../include/boost/tti/gen/has_enum_gen.hpp
$(here)/../include/boost/tti/gen/has_function_gen.hpp
$(here)/../include/boost/tti/gen/has_function_template_gen.hpp
$(here)/../include/boost/tti/gen/has_member_data_gen.hpp
$(here)/../include/boost/tti/gen/has_member_function_gen.hpp
$(here)/../include/boost/tti/gen/has_member_function_template_gen.hpp
$(here)/../include/boost/tti/gen/has_static_member_data_gen.hpp
$(here)/../include/boost/tti/gen/has_static_member_function_gen.hpp
$(here)/../include/boost/tti/gen/has_static_member_function_template_gen.hpp
$(here)/../include/boost/tti/gen/has_template_gen.hpp
$(here)/../include/boost/tti/gen/has_type_gen.hpp
$(here)/../include/boost/tti/gen/has_union_gen.hpp
$(here)/../include/boost/tti/gen/member_type_gen.hpp
$(here)/../include/boost/tti/gen/namespace_gen.hpp
:
<doxygen:param>PROJECT_NAME="TTI"
<doxygen:param>PROJECT_NUMBER=1
<doxygen:param>SORT_MEMBER_DOCS=NO
Expand All @@ -94,7 +94,7 @@ boostbook standalone
<xsl:param>chunk.section.depth=8 # How far down we chunk nested sections, basically all of them.
<xsl:param>toc.section.depth=8 # How far down sections get TOCs.
<xsl:param>toc.max.depth=4 # Max depth in each TOC.

# PDF Options:
# TOC Generation: this is needed for FOP-0.9 and later:
<xsl:param>fop1.extensions=0
Expand Down
Loading