diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-18 18:18:41 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-18 18:18:41 (GMT) |
commit | 81ca7c784c4dd58dde691284321e3e220550a75c (patch) | |
tree | ab1a1c0512a330970568b4e4785ce401fd2f90a6 /PCbuild9 | |
parent | 6030a60a4e8a04e2e52761518461837cc12d3b56 (diff) | |
download | cpython-81ca7c784c4dd58dde691284321e3e220550a75c.zip cpython-81ca7c784c4dd58dde691284321e3e220550a75c.tar.gz cpython-81ca7c784c4dd58dde691284321e3e220550a75c.tar.bz2 |
Updates to the msi builder and PCbuild9 directory. msi.py can now create installers from the PCbuild9 directory with MSVCR90.dll. PCbuild and MSVCR71.dll are still the default.
Diffstat (limited to 'PCbuild9')
-rw-r--r-- | PCbuild9/installer.bmp | bin | 0 -> 58806 bytes | |||
-rw-r--r-- | PCbuild9/pyd.vsprops | 8 | ||||
-rw-r--r-- | PCbuild9/pyd_d.vsprops | 6 |
3 files changed, 11 insertions, 3 deletions
diff --git a/PCbuild9/installer.bmp b/PCbuild9/installer.bmp Binary files differnew file mode 100644 index 0000000..1875e19 --- /dev/null +++ b/PCbuild9/installer.bmp diff --git a/PCbuild9/pyd.vsprops b/PCbuild9/pyd.vsprops index 3a3030e..173a78a 100644 --- a/PCbuild9/pyd.vsprops +++ b/PCbuild9/pyd.vsprops @@ -7,13 +7,17 @@ > <Tool Name="VCCLCompilerTool" - RuntimeLibrary="2" PreprocessorDefinitions="NDEBUG" + RuntimeLibrary="2" /> <Tool Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).pyd" - ImportLibrary="$(IntDir)\$(TargetName).lib" ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb" + ImportLibrary="$(IntDir)\$(TargetName).lib" + /> + <Tool + Name="VCPostBuildEventTool" + CommandLine="copy $(IntDir)\$(ProjectName).lib $(OutDir)" /> </VisualStudioPropertySheet> diff --git a/PCbuild9/pyd_d.vsprops b/PCbuild9/pyd_d.vsprops index 03933bb..c29d563 100644 --- a/PCbuild9/pyd_d.vsprops +++ b/PCbuild9/pyd_d.vsprops @@ -16,7 +16,11 @@ Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName)_d.pyd" LinkIncremental="1" - ImportLibrary="$(IntDir)\$(TargetName).lib" ProgramDatabaseFile="$(OutDir)\$(ProjectName)_d.pdb" + ImportLibrary="$(IntDir)\$(TargetName).lib" + /> + <Tool + Name="VCPostBuildEventTool" + CommandLine="copy $(IntDir)\$(ProjectName)_d.lib $(OutDir)" /> </VisualStudioPropertySheet> |