diff --git a/Jamfile.v2 b/Jamfile.v2 new file mode 100644 index 0000000..1e89e9e --- /dev/null +++ b/Jamfile.v2 @@ -0,0 +1,21 @@ +# Copyright 2023 Christian Mazakas. +# 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) + +import asciidoctor ; + +html boost-manual.html : doc/boost-manual.adoc ; + +install html_ : boost-manual.html : html ; + +pdf boost-manual.pdf : doc/boost-manual.adoc ; +explicit boost-manual.pdf ; + +install pdf_ : boost-manual.pdf : pdf ; +explicit pdf_ ; + +############################################################################### +alias boostdoc ; +explicit boostdoc ; +alias boostrelease : html_ ; +explicit boostrelease ; diff --git a/doc/boost-manual.adoc b/doc/boost-manual.adoc new file mode 100644 index 0000000..8abd915 --- /dev/null +++ b/doc/boost-manual.adoc @@ -0,0 +1,13 @@ += Boost Manual +:toc: left +:toclevels: 3 +:idprefix: +:docinfo: private-footer +:source-highlighter: rouge +:source-language: c++ +:nofooter: +:sectlinks: + +:leveloffset: +1 + +include::boost-manual/intro.adoc[] \ No newline at end of file diff --git a/doc/boost-manual/intro.adoc b/doc/boost-manual/intro.adoc new file mode 100644 index 0000000..9cfe30b --- /dev/null +++ b/doc/boost-manual/intro.adoc @@ -0,0 +1,7 @@ +[#intro] += Introduction + +:idprefix: intro_ + +Boost is a collection of peer-reviewed and high-quality libraries that aim to +make application development simple and straight-forward for everyone!