Image 2de73b6b83 Support for BestZ / Line of Sight / navmesh pathing | 4 years ago | |
---|---|---|
.. | ||
adv_scenarios | 4 years ago | |
closing_chapters | 4 years ago | |
doxygen | 4 years ago | |
examples | 4 years ago | |
html | 4 years ago | |
introduction | 4 years ago | |
prod_use | 4 years ago | |
runtime_configuration | 4 years ago | |
snippet | 4 years ago | |
test_organization | 4 years ago | |
test_output | 4 years ago | |
testing_tools | 4 years ago | |
tutorials | 4 years ago | |
Jamfile.v2 | 4 years ago | |
README.md | 4 years ago | |
adv_scenarios.qbk | 4 years ago | |
doxygen_reference_generated_doc.xml | 4 years ago | |
test.qbk | 4 years ago | |
usage_recommendations.qbk | 4 years ago | |
usage_variants.qbk | 4 years ago |
This folder contains the documentation for the Boost.Test library. Any contribution or submission to the library should be accompanied by the corresponding documentation.
The format of the documentation uses Quickbook.
In order to generate the documentation, the following is needed:
Part of the documentation needs Doxygen. doxygen
should be accessible from the PATH
.
Quickbook needs Docbook (XSL and XML) to be installed. Download and untar the docbook archives:
The directories $docbook_xsl_directory
and $docbook_dtd_directory
, respectively, will refer to the location
of the deflated archive.
This program is needed by Docbook, in order to be able to transform XMLs into HTMLs.
xsltproc
should be accessible from the PATH
.
Simply by typing in a console at the root of the Boost repository:
> ./bootstrap.[sh|bat]
Running the following commands will construct the documentation with b2
and
all the needed dependencies:
````
cd $boost_root/libs/test/doc ../../../b2 -sDOCBOOK_XSL_DIR=$docbook_xsl_directory -sDOCBOOK_DTD_DIR=$docbook_dtd_directory
It is possible to run directly
../../../b2 ```
but this results in a download from the Internet of the Docbook XLS and DTD, which is much slower.