Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v1/vc7-tools.jam @ 12

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

added boost

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