]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/sample/make_qbk.py
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / geometry / doc / src / docutils / tools / doxygen_xml2qbk / sample / make_qbk.py
CommitLineData
7c673cae
FG
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
11import os, sys
12
13cmd = "doxygen_xml2qbk"
14cmd = cmd + " --xml xml/%s.xml"
15cmd = cmd + " --start_include sample/"
16cmd = cmd + " > generated\%s.qbk"
17
18
19os.system("doxygen fruit.dox")
20os.system(cmd % ("group__fruit", "grouped"))
21os.system(cmd % ("classfruit_1_1apple", "apple"))
22os.system(cmd % ("classfruit_1_1rose", "rose"))
23os.system(cmd % ("structfruit_1_1fruit__value", "fruit_value"))
24os.system(cmd % ("structfruit_1_1fruit__type", "fruit_type"))
25
26os.system("bjam")