Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added boost

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