1# Copyright 2016-2017 Joaqu�n M L�pez Mu�oz. 2# Distributed under the Boost Software License, Version 1.0. 3# (See accompanying file LICENSE_1_0.txt or copy at 4# http://www.boost.org/LICENSE_1_0.txt) 5# 6# See http://www.boost.org/libs/poly_collection for library home page. 7 8project 9 : requirements 10 <include>$(BOOST_ROOT) 11 <cxxstd>11 12 ; 13 14exe algorithms 15 : algorithms.cpp 16 : <cxxstd>14 17 ; 18 19exe basic_any 20 : basic_any.cpp 21 ; 22 23exe basic_base 24 : basic_base.cpp 25 ; 26 27exe basic_function 28 : basic_function.cpp 29 : <cxxstd>14 30 ; 31 32exe exceptions 33 : exceptions.cpp 34 ; 35 36exe insertion_emplacement 37 : insertion_emplacement.cpp 38 ; 39 40exe perf 41 : perf.cpp 42 : 43 : release 44 ; 45 46exe segmented_structure 47 : segmented_structure.cpp 48 : <cxxstd>14 49 ; 50