mirror of
https://github.com/boostorg/build.git
synced 2026-02-18 01:52:17 +00:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
#~ Copyright 2004 Aleksey Gurtovoy.
|
|
#~ Copyright 2005 David Abrahams.
|
|
#~ 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)
|
|
|
|
extends-toolset msvc ;
|
|
|
|
# singleton variables...
|
|
set-as-singleton VC80_ROOT ;
|
|
|
|
if ! $(MSVCDir)
|
|
{
|
|
if $(VS80COMNTOOLS)
|
|
{
|
|
VC80_ROOT ?= $(VS80COMNTOOLS:J=" ")..\\..\\VC ;
|
|
}
|
|
else
|
|
{
|
|
ProgramFiles ?= $(PROGRAMFILES) ;
|
|
VC80_ROOT ?= $(ProgramFiles:J=" ")"\\Microsoft Visual Studio 8\\VC" ;
|
|
}
|
|
}
|
|
|
|
if $(VC80_ROOT)
|
|
{
|
|
VC_TOOL_PATH = "$(VC80_ROOT)"\\bin\\ ;
|
|
VC_SETUP = "CALL \"$(VC_TOOL_PATH)vcvars32.BAT\" >nul" ;
|
|
}
|
|
|
|
VC_PDB_NAME = vc80 ;
|
|
VC_MANIFEST = "mt -manifest " ;
|
|
VC_OUTPUTRESOURCE = -outputresource: ;
|
|
|
|
feature native-wchar_t : on off ;
|
|
flags vc-8_0 C++FLAGS : /Zc:forScope ;
|
|
flags vc-8_0 C++FLAGS <native-wchar_t>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.
|
|
#//<a href="http://msdn.microsoft.com/vstudio/whidbey/default.aspx">Micro-<br>soft<br>VC++</a>
|