]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/sample/make_qbk.py
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / geometry / doc / src / docutils / tools / doxygen_xml2qbk / sample / make_qbk.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3 # ===========================================================================
4 # Copyright (c) 2011-2012 Barend Gehrels, Amsterdam, the Netherlands.
5 #
6 # Use, modification and distribution is subject to the Boost Software License,
7 # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8 # http://www.boost.org/LICENSE_1_0.txt)9
9 # ============================================================================
10
11 import os, sys
12
13 cmd = "doxygen_xml2qbk"
14 cmd = cmd + " --xml xml/%s.xml"
15 cmd = cmd + " --start_include sample/"
16 cmd = cmd + " > generated\%s.qbk"
17
18
19 os.system("doxygen fruit.dox")
20 os.system(cmd % ("group__fruit", "grouped"))
21 os.system(cmd % ("classfruit_1_1apple", "apple"))
22 os.system(cmd % ("classfruit_1_1rose", "rose"))
23 os.system(cmd % ("structfruit_1_1fruit__value", "fruit_value"))
24 os.system(cmd % ("structfruit_1_1fruit__type", "fruit_type"))
25
26 os.system("bjam")