Files
fusion/Jamroot
2013-07-05 23:47:48 +01:00

30 lines
716 B
Plaintext

#
# Copyright (C) 2013 Mateusz Loskot <mateusz@loskot.net>
#
# 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) ;
}
# Declare project
project boost_fusion_std_array
:
requirements
<include>.
<toolset>clang:<cxxflags>-std=c++11
<toolset>gcc:<cxxflags>-std=c++0x
<toolset>gcc:<threading>multi
<toolset>gcc:<cxxflags>-ftemplate-depth=300
<toolset>msvc:<cxxflags>/wd4996
<use>/boost//headers
;
build-project libs/fusion/test ;