• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
13import boostcpp ;
14import path ;
15import option ;
16
17local RAPIDXML = [ modules.peek : RAPIDXML ] ;
18RAPIDXML ?= contrib/rapidxml-1.13 ;
19
20local DIST_DIR = [ option.get distdir ] ;
21DIST_DIR ?= [ path.join $(BOOST_ROOT) dist ] ;
22DIST_DIR = [ path.root [ path.make $(DIST_DIR) ] [ path.pwd ] ] ;
23local DIST_BIN = [ path.join $(DIST_DIR) bin ] ;
24
25project doxygen_xml2qbk
26    : requirements
27        <include>.
28        <include>$(RAPIDXML)
29        <library>../../../../../../program_options/build//boost_program_options
30        <link>static
31    ;
32
33exe doxygen_xml2qbk : doxygen_xml2qbk.cpp ;
34
35install dist-bin
36    :
37    doxygen_xml2qbk
38    :
39    <install-type>EXE
40    <location>$(DIST_BIN)
41    :
42    release
43    ;
44