mirror of
https://github.com/boostorg/detail.git
synced 2026-05-03 19:40:46 +02:00
a057517431
contains an iomanip header which uses C++0x features that only GCC supports, causing breakage with ICC and Clang. Also added a test, but I'm not sure how to set it up to be run by the testing machines. [SVN r67111]
22 lines
715 B
Plaintext
22 lines
715 B
Plaintext
################################################################*# Jam #*#######
|
|
# Copyright (C) 2010 Bryce Lelbach
|
|
#
|
|
# 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)
|
|
################################################################################
|
|
|
|
project detail/test
|
|
: requirements
|
|
<toolset>clang:<cxxflags>-Wno-unused
|
|
<toolset>clang:<cxxflags>-Wno-tautological-compare
|
|
<toolset>clang:<cxxflags>-ftemplate-depth-300
|
|
<toolset>gcc:<cxxflags>-ftemplate-depth-300
|
|
<toolset>darwin:<cxxflags>-ftemplate-depth-300
|
|
;
|
|
|
|
for tests in [ glob *.cpp ] {
|
|
run $(tests) : : : : $(tests:B) ;
|
|
}
|
|
|
|
|