Files
fusion/Jamroot
Mateusz Loskot 93a1fc3b87 Initial version of std::array for Boost.Fusion
Functional, though ADL issues have not been solved (see README).
2013-07-02 13:28:20 +01:00

28 lines
682 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
;