Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v1/vc-8_0-tools.jam @ 12

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

added boost

File size: 937 bytes
Line 
1extends-toolset msvc ;
2
3# singleton variables...
4set-as-singleton VC80_ROOT ;
5
6if ! $(MSVCDir)
7{
8    if $(VS80COMNTOOLS)
9    {
10        VC80_ROOT ?= $(VS80COMNTOOLS:J=" ")..\\..\\VC ;
11    }
12    else
13    {
14        ProgramFiles ?= $(PROGRAMFILES) ;
15        VC80_ROOT ?= $(ProgramFiles:J=" ")"\\Microsoft Visual Studio 8\\VC" ;
16    }
17}
18
19if $(VC80_ROOT)
20{
21    VC_TOOL_PATH = "$(VC80_ROOT)"\\bin\\ ;
22    VC_SETUP = "CALL \"$(VC_TOOL_PATH)vcvars32.BAT\" >nul" ;
23}
24
25VC_PDB_NAME = vc80 ;
26VC_MANIFEST = "mt -manifest " ;
27VC_OUTPUTRESOURCE = -outputresource: ;
28
29feature native-wchar_t : on off ;
30flags vc-8_0 C++FLAGS : /Zc:forScope ;
31flags vc-8_0 C++FLAGS <native-wchar_t>on : /Zc:wchar_t ;
32
33# The following #// line will be used by the regression test table generation
34# program as the column heading for HTML tables. Must not include version number.
35#//<a href="http://msdn.microsoft.com/vstudio/whidbey/default.aspx">Micro-<br>soft<br>VC++</a>
Note: See TracBrowser for help on using the repository browser.