forked from boostorg/mp11
Link to local articles in MP11 documentation
This commit is contained in:
30
doc/Jamfile
30
doc/Jamfile
@@ -11,12 +11,36 @@ import asciidoctor ;
|
|||||||
|
|
||||||
html mp11.html : mp11.adoc ;
|
html mp11.html : mp11.adoc ;
|
||||||
|
|
||||||
install html_ : mp11.html : <location>html ;
|
html simple_cxx11_metaprogramming.html :
|
||||||
|
article/simple_cxx11_metaprogramming.adoc ;
|
||||||
|
|
||||||
|
html simple_cxx11_metaprogramming_2.html :
|
||||||
|
article/simple_cxx11_metaprogramming_2.adoc ;
|
||||||
|
|
||||||
|
install html_ :
|
||||||
|
mp11.html
|
||||||
|
simple_cxx11_metaprogramming.html
|
||||||
|
simple_cxx11_metaprogramming_2.html :
|
||||||
|
<location>html ;
|
||||||
|
|
||||||
pdf mp11.pdf : mp11.adoc ;
|
pdf mp11.pdf : mp11.adoc ;
|
||||||
explicit mp11.pdf ;
|
|
||||||
|
|
||||||
install pdf_ : mp11.pdf : <location>pdf ;
|
pdf simple_cxx11_metaprogramming.pdf :
|
||||||
|
article/simple_cxx11_metaprogramming.adoc ;
|
||||||
|
|
||||||
|
pdf simple_cxx11_metaprogramming_2.pdf :
|
||||||
|
article/simple_cxx11_metaprogramming_2.adoc ;
|
||||||
|
|
||||||
|
explicit mp11.pdf
|
||||||
|
simple_cxx11_metaprogramming.pdf
|
||||||
|
simple_cxx11_metaprogramming_2.pdf ;
|
||||||
|
|
||||||
|
install pdf_ :
|
||||||
|
mp11.pdf
|
||||||
|
simple_cxx11_metaprogramming.pdf
|
||||||
|
simple_cxx11_metaprogramming_2.pdf :
|
||||||
|
<location>pdf ;
|
||||||
|
|
||||||
explicit pdf_ ;
|
explicit pdf_ ;
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
@@ -13,8 +13,8 @@ http://www.boost.org/LICENSE_1_0.txt
|
|||||||
Mp11 is a C++11 metaprogramming library for compile-time manipulation of data structures
|
Mp11 is a C++11 metaprogramming library for compile-time manipulation of data structures
|
||||||
that contain types. It's based on template aliases and variadic templates and implements the
|
that contain types. It's based on template aliases and variadic templates and implements the
|
||||||
approach outlined in the article
|
approach outlined in the article
|
||||||
http://pdimov.com/cpp2/simple_cxx11_metaprogramming.html["Simple {cpp} metaprogramming"]
|
<<simple_cxx11_metaprogramming.adoc#,"Simple {cpp} metaprogramming">>
|
||||||
and http://pdimov.com/cpp2/simple_cxx11_metaprogramming_2.html[its sequel]. Reading these
|
and <<simple_cxx11_metaprogramming_2.adoc#,its sequel>>. Reading these
|
||||||
articles before proceeding with this documentation is _highly_ recommended.
|
articles before proceeding with this documentation is _highly_ recommended.
|
||||||
|
|
||||||
The general principles upon which Mp11 is built are that algorithms and metafunctions are
|
The general principles upon which Mp11 is built are that algorithms and metafunctions are
|
||||||
|
Reference in New Issue
Block a user