Files
es_build_deliv/windows_deliv/install/content/eiffelstudio/studio_gdiplus.wxs

22 lines
752 B
XML

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<?ifndef IsWin64?>
<?ifdef x64?>
<?define IsWin64 = "yes"?>
<?else ?>
<?define IsWin64 = "no"?>
<?endif ?>
<?endif ?>
<?ifdef EiffelStudio?>
<DirectoryRef Id="Dir.Core.studio.spec.$(var.IsePlatform).bin">
<Component Id="Comp.gdiplusreleases" Guid="804BCFD2-95A6-4E37-B6AF-73DFBF5993B9" Win64="$(var.IsWin64)" KeyPath="yes">
<File Id="gdiplusgdiplus.dll" Name="gdiplus.dll" DiskId="1" Source="M:\deliv\InstalledEiffel_18.05_win64\releases\gdiplus.dll" />
</Component>
</DirectoryRef>
<ComponentGroup Id="gdiplus">
<ComponentRef Id="Comp.gdiplusreleases" />
</ComponentGroup>
<?endif ?>
</Fragment>
</Wix>