mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 13:42:14 +00:00
Fixed grammar in build_system.htm Added vc7.1-tools.jam/.html for msvc 7.1 Updated the regex lib Jamfile to build correctly-named libraries [SVN r18319]
22 lines
626 B
Plaintext
Executable File
22 lines
626 B
Plaintext
Executable File
extends-toolset msvc ;
|
|
|
|
# singleton variables...
|
|
set-as-singleton VC71_ROOT ;
|
|
|
|
if ! $(MSVCDir)
|
|
{
|
|
VC71_ROOT ?= "C:\\Program Files\\Microsoft Visual Studio .NET 2003\\VC7" ;
|
|
VC_TOOL_PATH = "$(VC71_ROOT)"\\bin\\ ;
|
|
VC_SETUP = "CALL \"$(VC_TOOL_PATH)VCVARS32.BAT\" >nul" ;
|
|
}
|
|
VC_PDB_NAME = vc71 ;
|
|
|
|
flags vc7.1 CFLAGS : /Op ;
|
|
flags vc7.1 C++FLAGS : /Zc:wchar_t,forScope ;
|
|
|
|
# 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/default.asp">Micro-<br>soft<br>VC++</a>
|
|
|
|
|