summaryrefslogtreecommitdiffstats
path: root/PCbuild9
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-18 18:18:41 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-18 18:18:41 (GMT)
commit81ca7c784c4dd58dde691284321e3e220550a75c (patch)
treeab1a1c0512a330970568b4e4785ce401fd2f90a6 /PCbuild9
parent6030a60a4e8a04e2e52761518461837cc12d3b56 (diff)
downloadcpython-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.bmpbin0 -> 58806 bytes
-rw-r--r--PCbuild9/pyd.vsprops8
-rw-r--r--PCbuild9/pyd_d.vsprops6
3 files changed, 11 insertions, 3 deletions
diff --git a/PCbuild9/installer.bmp b/PCbuild9/installer.bmp
new file mode 100644
index 0000000..1875e19
--- /dev/null
+++ b/PCbuild9/installer.bmp
Binary files differ
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>