From cc7501553e45477d0988b5cecc4a09c632dd02f8 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Mon, 26 Jul 2004 02:31:45 +0000 Subject: [PATCH] add VC 8.0 toolset [SVN r24058] --- v1/vc8.0-tools.jam | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 v1/vc8.0-tools.jam diff --git a/v1/vc8.0-tools.jam b/v1/vc8.0-tools.jam new file mode 100644 index 000000000..27035cd56 --- /dev/null +++ b/v1/vc8.0-tools.jam @@ -0,0 +1,22 @@ +extends-toolset msvc ; + +# singleton variables... +set-as-singleton VC80_ROOT ; + +if ! $(MSVCDir) +{ + ProgramFiles ?= $(PROGRAMFILES) ; + VC80_ROOT ?= $(ProgramFiles:J=" ")"\\Microsoft Visual Studio .NET Whidbey\\VC7" ; + VC_TOOL_PATH = "$(VC80_ROOT)"\\bin\\ ; + VC_SETUP = "CALL \"$(VC_TOOL_PATH)VCVARS32.BAT\" >nul" ; +} +VC_PDB_NAME = vc80 ; + +feature native-wchar_t : on off ; + +flags vc8.0 C++FLAGS : /Zc:forScope ; +flags vc8.0 C++FLAGS on : /Zc:wchar_t ; + +# The following #// line will be used by the regression test table generation +# program as the column heading for HTML tables. Must not include version number. +#//Micro-
soft
VC++