diff options
author | Guido van Rossum <guido@python.org> | 1997-09-03 16:10:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-03 16:10:52 (GMT) |
commit | 9ca064fbb4392940491c745fb9470530b5fabdc2 (patch) | |
tree | 58cecfb10b98effcd87cfb817cf9e8770fe3bd4f /PC/vc5x/python15.dsp | |
parent | 4a78a3cf3bbd5eaa6fca0657b94151e9c6f15986 (diff) | |
download | cpython-9ca064fbb4392940491c745fb9470530b5fabdc2.zip cpython-9ca064fbb4392940491c745fb9470530b5fabdc2.tar.gz cpython-9ca064fbb4392940491c745fb9470530b5fabdc2.tar.bz2 |
At Mark Hammond's suggestion:
- use the DLL versions of the C runtime (!)
- change path settings so intermediate files go to Debug/temp or Release/temp
- add resource file to python15.dll (can't remember what this does)
- add a separate project to build the parser module
Diffstat (limited to 'PC/vc5x/python15.dsp')
-rw-r--r-- | PC/vc5x/python15.dsp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/PC/vc5x/python15.dsp b/PC/vc5x/python15.dsp index edf4982..d01bff1 100644 --- a/PC/vc5x/python15.dsp +++ b/PC/vc5x/python15.dsp @@ -39,11 +39,11 @@ RSC=rc.exe # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" +# PROP Intermediate_Dir "Release\temp" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -65,11 +65,11 @@ LINK32=link.exe # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" +# PROP Intermediate_Dir "Debug\temp" # 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 /FD /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" @@ -343,10 +343,6 @@ SOURCE=..\Parser\parser.c # End Source File # Begin Source File -SOURCE=..\Modules\parsermodule.c -# End Source File -# Begin Source File - SOURCE=..\Parser\parsetok.c # End Source File # Begin Source File @@ -367,6 +363,10 @@ SOURCE=..\PC\python_nt.def # End Source File # Begin Source File +SOURCE=..\PC\python_nt.rc +# End Source File +# Begin Source File + SOURCE=..\Python\pythonrun.c # End Source File # Begin Source File |