]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / geometry / doc / src / docutils / tools / doxygen_xml2qbk / Jamfile.v2
1 # Boost.Geometry (aka GGL, Generic Geometry Library)
2 # Doxygen XML to QuickBook
3 #
4 # Copyright (c) 2010-2012 Barend Gehrels, Amsterdam, the Netherlands.
5 # Copyright (c) 2010-2012 Mateusz Loskot, London, UK.
6 # Copyright (c) 2015 Rene Rivera
7
8 # Use, modification and distribution is subject to the Boost Software License,
9 # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
10 # http://www.boost.org/LICENSE_1_0.txt)
11
12
13 import boostcpp ;
14 import path ;
15 import option ;
16
17 local RAPIDXML = [ modules.peek : RAPIDXML ] ;
18 RAPIDXML ?= contrib/rapidxml-1.13 ;
19
20 local DIST_DIR = [ option.get distdir ] ;
21 DIST_DIR ?= [ path.join $(BOOST_ROOT) dist ] ;
22 DIST_DIR = [ path.root [ path.make $(DIST_DIR) ] [ path.pwd ] ] ;
23 local DIST_BIN = [ path.join $(DIST_DIR) bin ] ;
24
25 project doxygen_xml2qbk
26 : requirements
27 <include>.
28 <include>$(RAPIDXML)
29 <library>../../../../../../program_options/build//boost_program_options
30 <link>static
31 ;
32
33 exe doxygen_xml2qbk : doxygen_xml2qbk.cpp ;
34
35 install dist-bin
36 :
37 doxygen_xml2qbk
38 :
39 <install-type>EXE
40 <location>$(DIST_BIN)
41 :
42 release
43 ;