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.
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>