# Boost.Mock # # Copyright Mathieu Champlon 2012 # # 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 path ; using boostbook : : : [ path.pwd ] ; using quickbook ; using doxygen ; xml mock : mock.qbk ; #doxygen reference # : # [ glob ../../../boost/mock/*.hpp ] # : # EXPAND_ONLY_PREDEF=YES # HIDE_UNDOC_MEMBERS=NO # QUIET=YES # WARN_IF_UNDOCUMENTED=NO # EXTRACT_PRIVATE=NO # ENABLE_PREPROCESSING=YES # MACRO_EXPANSION=YES # SEARCH_INCLUDES=NO #; boostbook standalone : mock : # reference boost.image.src=images/boost.png chunk.first.sections=1 # toc.max.depth=3 toc.section.depth=4 nav.layout=horizontal ; project example : requirements ../../../../.. ; rule compile-examples { for name in [ glob example/*.cpp ] { compile $(name) ; } } alias mock_examples : [ compile-examples ] ;