Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v1/vc-7_1-tools.jam @ 12

Last change on this file since 12 was 12, checked in by landauf, 18 years ago

added boost

File size: 822 bytes
Line 
1extends-toolset msvc ;
2
3# singleton variables...
4set-as-singleton VC71_ROOT ;
5
6if ! $(MSVCDir)
7{
8    ProgramFiles ?= $(PROGRAMFILES) ;
9    VC71_ROOT ?= $(ProgramFiles:J=" ")"\\Microsoft Visual Studio .NET 2003\\VC7" ;
10    VC_TOOL_PATH = "$(VC71_ROOT)"\\bin\\ ;
11    VC_SETUP = "CALL \"$(VC_TOOL_PATH)VCVARS32.BAT\" >nul" ;
12}
13VC_PDB_NAME = vc71 ;
14
15feature native-wchar_t : on off ;
16
17flags vc-7_1 CFLAGS : /Op ;
18flags vc-7_1 C++FLAGS : /wd4675 ; # Don't warn about the use of ADL
19flags vc-7_1 C++FLAGS : /Zc:forScope ;
20flags vc-7_1 C++FLAGS <native-wchar_t>on : /Zc:wchar_t ;
21
22# The following #// line will be used by the regression test table generation
23# program as the column heading for HTML tables. Must not include version number.
24#//<a href="http://msdn.microsoft.com/vstudio/default.asp">Micro-<br>soft<br>VC++</a>
25
26
Note: See TracBrowser for help on using the repository browser.