1# Boost.Format Library Jamfile 2# 3# Copyright (c) 2003 Samuel Krempp 4# 5# Use, modification, and distribution are subject to the 6# Boost Software License, Version 1.0. (See accompanying file 7# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 9project 10 : requirements 11 12 <warnings>all 13 14 <toolset>clang:<cxxflags>-Wextra 15 <toolset>clang:<cxxflags>-ansi 16 <toolset>clang:<cxxflags>-pedantic 17 18 <toolset>gcc:<cxxflags>-Wextra 19 <toolset>gcc:<cxxflags>-ansi 20 <toolset>gcc:<cxxflags>-pedantic 21 ; 22 23# please order by name to ease maintenance 24build-project benchmark ; 25build-project example ; 26build-project test ; 27build-project tools ; 28