diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-02 23:18:43 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-02 23:18:43 (GMT) |
commit | 090c2161a17e88fd6f29fa0956f67879924d3675 (patch) | |
tree | afb3250a7c1dfb3ed8baca5e7089343527ac4f0d /PC/example_nt/example.dsp | |
parent | 019bcb598d9b4890a105a0476b9b4e5cb9f14da7 (diff) | |
download | cpython-090c2161a17e88fd6f29fa0956f67879924d3675.zip cpython-090c2161a17e88fd6f29fa0956f67879924d3675.tar.gz cpython-090c2161a17e88fd6f29fa0956f67879924d3675.tar.bz2 |
The example_nt directory was old enough to vote. Frank Stajano
pointed out some of the problems he had following the instructions,
and I stumbled into the others: MSVC has changed in several
respects, Python has changed the directories into which it builds
its own Windows outputs, and we grew the unusual scheme of
appending "_d" to the names of debug-mode output files.
This should all work with VC6 + CVS Python now. Some other Windows
geek please confirm! And the less you know, the better <0.5 wink>.
Explanations and examples for versions of MSVC before 6, and
versions of Python before 2.0b1, have been removed, because
they're too different and so confuse life. This last step I OK'ed
with Guido first (indeed, 'twas his idea!).
Diffstat (limited to 'PC/example_nt/example.dsp')
-rw-r--r-- | PC/example_nt/example.dsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/PC/example_nt/example.dsp b/PC/example_nt/example.dsp index 58171cc..7d19b90 100644 --- a/PC/example_nt/example.dsp +++ b/PC/example_nt/example.dsp @@ -1,5 +1,5 @@ # Microsoft Developer Studio Project File - Name="example" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
@@ -17,12 +17,12 @@ CFG=example - Win32 Release !MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
-!MESSAGE "example - Win32 Release" (based on\
- "Win32 (x86) Dynamic-Link Library")
+!MESSAGE "example - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
!MESSAGE "example - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
!MESSAGE
# Begin Project
+# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
@@ -70,7 +70,7 @@ LINK32=link.exe # PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
# ADD BASE MTL /nologo /D "_DEBUG" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|