diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-02-14 18:30:54 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-02-14 18:30:54 (GMT) |
commit | cc115eea0c3399ee77b4576212bf29b7b018f1fd (patch) | |
tree | a03ef6b5982f4bfc68c086bf77c54f448088aa78 /Tools/msi/lib | |
parent | 17be514d0a9a391461fbbdb06332d7b2b8273374 (diff) | |
download | cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.zip cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.tar.gz cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.tar.bz2 |
Simplify MSI projects.
Diffstat (limited to 'Tools/msi/lib')
-rw-r--r-- | Tools/msi/lib/lib.props | 27 | ||||
-rw-r--r-- | Tools/msi/lib/lib.wixproj | 27 | ||||
-rw-r--r-- | Tools/msi/lib/lib.wxs | 12 | ||||
-rw-r--r-- | Tools/msi/lib/lib_d.wixproj | 12 | ||||
-rw-r--r-- | Tools/msi/lib/lib_d.wxs | 13 | ||||
-rw-r--r-- | Tools/msi/lib/lib_pdb.wixproj | 12 | ||||
-rw-r--r-- | Tools/msi/lib/lib_pdb.wxs | 13 |
7 files changed, 71 insertions, 45 deletions
diff --git a/Tools/msi/lib/lib.props b/Tools/msi/lib/lib.props deleted file mode 100644 index 413ba0c..0000000 --- a/Tools/msi/lib/lib.props +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <Import Project="..\msi.props" /> - <ItemGroup> - <Compile Include="*.wxs" /> - </ItemGroup> - <ItemGroup> - <EmbeddedResource Include="*.wxl" /> - </ItemGroup> - <ItemGroup> - <ExcludeFolders Include="Lib\test;Lib\tests;Lib\tkinter;Lib\idlelib;Lib\turtledemo" /> - <InstallFiles Include="$(PySourcePath)Lib\**\*" - Exclude="$(PySourcePath)Lib\**\*.pyc; - $(PySourcePath)Lib\**\*.pyo; - $(PySourcePath)Lib\site-packages\README; - @(ExcludeFolders->'$(PySourcePath)%(Identity)\*'); - @(ExcludeFolders->'$(PySourcePath)%(Identity)\**\*')"> - <SourceBase>$(PySourcePath)Lib</SourceBase> - <Source>!(bindpath.src)Lib\</Source> - <TargetBase>$(PySourcePath)Lib</TargetBase> - <Target_>Lib\</Target_> - <Group>lib_py</Group> - </InstallFiles> - </ItemGroup> - - <Import Project="..\msi.targets" /> -</Project>
\ No newline at end of file diff --git a/Tools/msi/lib/lib.wixproj b/Tools/msi/lib/lib.wixproj index e9281da..64e5878 100644 --- a/Tools/msi/lib/lib.wixproj +++ b/Tools/msi/lib/lib.wixproj @@ -5,7 +5,30 @@ <SchemaVersion>2.0</SchemaVersion> <OutputName>lib</OutputName> <OutputType>Package</OutputType> - <DefineConstants>IncludeDefaultFeature=1;$(DefineConstants)</DefineConstants> </PropertyGroup> - <Import Project="lib.props" /> + <Import Project="..\msi.props" /> + <ItemGroup> + <Compile Include="lib.wxs" /> + <Compile Include="lib_files.wxs" /> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="*.wxl" /> + </ItemGroup> + <ItemGroup> + <ExcludeFolders Include="Lib\test;Lib\tests;Lib\tkinter;Lib\idlelib;Lib\turtledemo" /> + <InstallFiles Include="$(PySourcePath)Lib\**\*" + Exclude="$(PySourcePath)Lib\**\*.pyc; + $(PySourcePath)Lib\**\*.pyo; + $(PySourcePath)Lib\site-packages\README; + @(ExcludeFolders->'$(PySourcePath)%(Identity)\*'); + @(ExcludeFolders->'$(PySourcePath)%(Identity)\**\*')"> + <SourceBase>$(PySourcePath)Lib</SourceBase> + <Source>!(bindpath.src)Lib\</Source> + <TargetBase>$(PySourcePath)Lib</TargetBase> + <Target_>Lib\</Target_> + <Group>lib_py</Group> + </InstallFiles> + </ItemGroup> + + <Import Project="..\msi.targets" /> </Project>
\ No newline at end of file diff --git a/Tools/msi/lib/lib.wxs b/Tools/msi/lib/lib.wxs index 89bea62..b1aec75 100644 --- a/Tools/msi/lib/lib.wxs +++ b/Tools/msi/lib/lib.wxs @@ -7,22 +7,10 @@ <PropertyRef Id="UpgradeTable" /> <PropertyRef Id="REGISTRYKEY" /> - <?ifdef IncludeDefaultFeature ?> <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> <ComponentGroupRef Id="lib_py" /> <ComponentGroupRef Id="lib_files" /> <ComponentGroupRef Id="lib_extensions" /> </Feature> - <?endif ?> - <?ifdef IncludeSymbols ?> - <Feature Id="Symbols" AllowAdvertise="no" Title="!(loc.TitlePdb)" Description="!(loc.DescriptionPdb)"> - <ComponentGroupRef Id="lib_extensions_symbols" /> - </Feature> - <?endif ?> - <?ifdef IncludeDebugBinaries ?> - <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)"> - <ComponentGroupRef Id="lib_extensions_d" /> - </Feature> - <?endif ?> </Product> </Wix> diff --git a/Tools/msi/lib/lib_d.wixproj b/Tools/msi/lib/lib_d.wixproj index e632319..587a82c 100644 --- a/Tools/msi/lib/lib_d.wixproj +++ b/Tools/msi/lib/lib_d.wixproj @@ -5,7 +5,15 @@ <SchemaVersion>2.0</SchemaVersion> <OutputName>lib_d</OutputName> <OutputType>Package</OutputType> - <DefineConstants>IncludeDebugBinaries=1;$(DefineConstants)</DefineConstants> </PropertyGroup> - <Import Project="lib.props" /> + <Import Project="..\msi.props" /> + <ItemGroup> + <Compile Include="lib_d.wxs" /> + <Compile Include="lib_files.wxs" /> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="*.wxl" /> + </ItemGroup> + + <Import Project="..\msi.targets" /> </Project>
\ No newline at end of file diff --git a/Tools/msi/lib/lib_d.wxs b/Tools/msi/lib/lib_d.wxs new file mode 100644 index 0000000..5a5cf70 --- /dev/null +++ b/Tools/msi/lib/lib_d.wxs @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> + <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> + <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" /> + <MediaTemplate EmbedCab="yes" CompressionLevel="high" /> + + <PropertyRef Id="UpgradeTable" /> + + <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)"> + <ComponentGroupRef Id="lib_extensions_d" /> + </Feature> + </Product> +</Wix> diff --git a/Tools/msi/lib/lib_pdb.wixproj b/Tools/msi/lib/lib_pdb.wixproj index 21b5912..db1b5bb 100644 --- a/Tools/msi/lib/lib_pdb.wixproj +++ b/Tools/msi/lib/lib_pdb.wixproj @@ -5,7 +5,15 @@ <SchemaVersion>2.0</SchemaVersion> <OutputName>lib_pdb</OutputName> <OutputType>Package</OutputType> - <DefineConstants>IncludeSymbols=1;$(DefineConstants)</DefineConstants> </PropertyGroup> - <Import Project="lib.props" /> + <Import Project="..\msi.props" /> + <ItemGroup> + <Compile Include="lib_pdb.wxs" /> + <Compile Include="lib_files.wxs" /> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="*.wxl" /> + </ItemGroup> + + <Import Project="..\msi.targets" /> </Project>
\ No newline at end of file diff --git a/Tools/msi/lib/lib_pdb.wxs b/Tools/msi/lib/lib_pdb.wxs new file mode 100644 index 0000000..a2be0c9 --- /dev/null +++ b/Tools/msi/lib/lib_pdb.wxs @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> + <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> + <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" /> + <MediaTemplate EmbedCab="yes" CompressionLevel="high" /> + + <PropertyRef Id="UpgradeTable" /> + + <Feature Id="Symbols" AllowAdvertise="no" Title="!(loc.TitlePdb)" Description="!(loc.DescriptionPdb)"> + <ComponentGroupRef Id="lib_extensions_symbols" /> + </Feature> + </Product> +</Wix> |