diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-08-15 21:38:16 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-08-15 21:38:16 (GMT) |
commit | e6894d6256d000abd2c5ab7bb35b330d7a51d443 (patch) | |
tree | c2c186b4506de64fcd9812f342ee3471a9f682d7 /Tools/msi/bundle | |
parent | a0bcfaff9af66f164e93bae129d9c9be84b3f3d9 (diff) | |
download | cpython-e6894d6256d000abd2c5ab7bb35b330d7a51d443.zip cpython-e6894d6256d000abd2c5ab7bb35b330d7a51d443.tar.gz cpython-e6894d6256d000abd2c5ab7bb35b330d7a51d443.tar.bz2 |
Enables building compressed Windows test builds with --pack option.
Diffstat (limited to 'Tools/msi/bundle')
-rw-r--r-- | Tools/msi/bundle/snapshot.wixproj | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Tools/msi/bundle/snapshot.wixproj b/Tools/msi/bundle/snapshot.wixproj index 8fe95a8..cc45043 100644 --- a/Tools/msi/bundle/snapshot.wixproj +++ b/Tools/msi/bundle/snapshot.wixproj @@ -9,9 +9,14 @@ <Import Project="..\msi.props" /> <PropertyGroup> + <DefineConstants Condition="'$(Pack)' != 'true'"> + $(DefineConstants);CompressMSI=no; + </DefineConstants> + <DefineConstants Condition="'$(Pack)' == 'true'"> + $(DefineConstants);CompressMSI=yes; + </DefineConstants> <DefineConstants> $(DefineConstants); - CompressMSI=no; CompressPDB=no; CompressMSI_D=no; </DefineConstants> |