mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-24 09:37:14 +02:00
30 lines
716 B
Plaintext
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 ;
|