Add <no-warn> so como can compile winnt.h

[SVN r18656]
This commit is contained in:
Beman Dawes
2003-06-03 20:07:02 +00:00
parent 2f9da388c1
commit ca984697f0
2 changed files with 7 additions and 1 deletions

View File

@ -11,6 +11,7 @@ lib boost_regex : ../src/$(SOURCES).cpp
<sysinclude>$(BOOST_ROOT)
<define>BOOST_REGEX_NO_LIB=1
<define>BOOST_REGEX_STATIC_LINK=1
<no-warn>$(SOURCES).cpp
:
debug release
;
@ -21,6 +22,7 @@ dll boost_regex : ../src/$(SOURCES).cpp
<sysinclude>$(BOOST_ROOT)
<define>BOOST_RE_BUILD_DLL=1
<runtime-link>dynamic
<no-warn>$(SOURCES).cpp
:
debug release
;

View File

@ -23,7 +23,11 @@ template regression
rule regex-test ( name : sources + : requirements * : input-files * )
{
return [ run $(sources) : : $(input-files) : $(requirements) : $(name) ] ;
return [ run $(sources)
:
: $(input-files)
: $(requirements) <no-warn>parse.cpp <no-warn>regress.cpp <no-warn>tests.cpp
: $(name) ] ;
}
test-suite regex