1# Boost.Flyweight examples Jamfile 2# 3# Copyright 2006-2014 Joaqu�n M L�pez Mu�oz. 4# Distributed under the Boost Software License, Version 1.0. 5# (See accompanying file LICENSE_1_0.txt or copy at 6# http://www.boost.org/LICENSE_1_0.txt) 7# 8# See http://www.boost.org/libs/flyweight for library home page. 9 10project 11 : requirements 12 <os>LINUX:<threading>multi 13 ; 14 15exe basic 16 : basic.cpp 17 : <include>$(BOOST_ROOT) 18 ; 19 20exe composite 21 : composite.cpp 22 : <include>$(BOOST_ROOT) 23 ; 24 25exe custom_factory 26 : custom_factory.cpp 27 : <include>$(BOOST_ROOT) 28 ; 29 30exe fibonacci 31 : fibonacci.cpp 32 : <include>$(BOOST_ROOT) 33 ; 34 35exe html 36 : html.cpp 37 : <include>$(BOOST_ROOT) 38 ; 39 40exe key_value 41 : key_value.cpp 42 : <include>$(BOOST_ROOT) 43 ; 44 45exe perf 46 : perf.cpp 47 : <include>$(BOOST_ROOT) 48 : release 49 ; 50 51exe serialization 52 : serialization.cpp 53 /boost/serialization//boost_serialization/<link>static 54 : <include>$(BOOST_ROOT) 55 ; 56