Line | |
---|
1 | extends-toolset msvc ; |
---|
2 | |
---|
3 | # singleton variables... |
---|
4 | set-as-singleton VC80_ROOT ; |
---|
5 | |
---|
6 | if ! $(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 | |
---|
19 | if $(VC80_ROOT) |
---|
20 | { |
---|
21 | VC_TOOL_PATH = "$(VC80_ROOT)"\\bin\\ ; |
---|
22 | VC_SETUP = "CALL \"$(VC_TOOL_PATH)vcvars32.BAT\" >nul" ; |
---|
23 | } |
---|
24 | |
---|
25 | VC_PDB_NAME = vc80 ; |
---|
26 | VC_MANIFEST = "mt -manifest " ; |
---|
27 | VC_OUTPUTRESOURCE = -outputresource: ; |
---|
28 | |
---|
29 | feature native-wchar_t : on off ; |
---|
30 | flags vc-8_0 C++FLAGS : /Zc:forScope ; |
---|
31 | flags 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.