Build shared/static runtime variants on NT, like V1 does

[SVN r35763]
This commit is contained in:
Vladimir Prus 2006-10-28 18:40:39 +00:00
parent 9b9611c94c
commit d8f2c4250b

View file

@ -107,6 +107,7 @@ import stage ;
import package ;
import path ;
import common ;
import os ;
constant BOOST_VERSION : 1.35.0 ;
@ -125,9 +126,13 @@ if $(__file__:D) = ""
debug release
<threading>single <threading>multi
<link>shared <link>static
# <runtime-link>shared <runtime-link>static
<runtime-debugging>off
;
if [ os.name ] = NT
{
default-build += <runtime-link>shared <runtime-link>static ;
}
}
else
{