Line | |
---|
1 | extends-toolset msvc ; |
---|
2 | |
---|
3 | # singleton variables... |
---|
4 | set-as-singleton VC71_ROOT ; |
---|
5 | |
---|
6 | if ! $(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 | } |
---|
13 | VC_PDB_NAME = vc71 ; |
---|
14 | |
---|
15 | feature native-wchar_t : on off ; |
---|
16 | |
---|
17 | flags vc-7_1 CFLAGS : /Op ; |
---|
18 | flags vc-7_1 C++FLAGS : /wd4675 ; # Don't warn about the use of ADL |
---|
19 | flags vc-7_1 C++FLAGS : /Zc:forScope ; |
---|
20 | flags 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.