Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: f03c5148cfc6873df855bd0edca2940f9a5d8fd5 authored by Ned Deily on 14 March 2018, 01:21:36 UTC
3.6.5rc1
Tip revision: f03c514
test_files.wxs
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <?define exts=_testcapi;_ctypes_test;_testbuffer;_testimportmultiple;_testmultiphase;_testconsole ?>
    <Fragment>
        <ComponentGroup Id="test_extensions">
            <?foreach ext in $(var.exts)?>
        
            <Component Id="$(var.ext).pyd" Directory="DLLs" Guid="*">
                <File Name="$(var.ext).pyd" KeyPath="yes" />
            </Component>
            
            <?endforeach ?>
        </ComponentGroup>
    </Fragment>
    
    <Fragment>
        <ComponentGroup Id="test_extensions_symbols">
            <?foreach ext in $(var.exts)?>
            
            <Component Id="$(var.ext).pdb" Directory="DLLs" Guid="*">
                <File Name="$(var.ext).pdb" />
            </Component>
            
            <?endforeach ?>
        </ComponentGroup>
    </Fragment>
    
    <Fragment>
        <ComponentGroup Id="test_extensions_d">
            <?foreach ext in $(var.exts)?>
            
            <Component Id="$(var.ext)_d.pyd" Directory="DLLs" Guid="*">
                <File Name="$(var.ext)_d.pyd" />
            </Component>
            <Component Id="$(var.ext)_d.pdb" Directory="DLLs" Guid="*">
                <File Name="$(var.ext)_d.pdb" />
            </Component>
            
            <?endforeach ?>
        </ComponentGroup>
    </Fragment>
</Wix>
back to top