Jamfile 529 B

12345678910111213141516171819202122232425
  1. # Copyright 2017 Peter Dimov
  2. # Copyright 2018 Emil Dotchevski
  3. #
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. project doc/qvm ;
  8. import asciidoctor ;
  9. html index.html : qvm.adoc ;
  10. install html_ : index.html : <location>html ;
  11. pdf qvm.pdf : qvm.adoc ;
  12. explicit qvm.pdf ;
  13. install pdf_ : qvm.pdf : <location>pdf ;
  14. explicit pdf_ ;
  15. alias boostdoc ;
  16. explicit boostdoc ;
  17. alias boostrelease : html_ ;
  18. explicit boostrelease ;