#
#   Copyright (C) 2012 ciere consulting, ciere.com
#   Copyright (C) 2010, 2011 Object Modeling Designs
#
#   Distributed under the Boost Software License, Version 1.0. (See accompanying
#   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#

import os ;
local BOOST_ROOT = [ os.environ BOOST_ROOT ] ;

if $(BOOST_ROOT)
{
   use-project /boost : $(BOOST_ROOT) ;
}

project /ciere/json
        : source-location ../src
        : requirements <toolset>gcc:<cxxflags>-ftemplate-depth-300
        : usage-requirements <include>..
        : default-build <threading>multi
        : build-dir ../lib
        ;


lib json
   : [ glob ../src/*.cpp ] : 
          <implicit-dependency>/boost//headers
        :
   :
   : <include>..
        ;

