1 <?xml version=
"1.0" encoding=
"UTF-8"?>
2 <Wix xmlns=
"http://schemas.microsoft.com/wix/2006/wi">
3 <?ifndef env.QEMU_GA_VERSION
?>
4 <?error Environment variable QEMU_GA_VERSION undefined
?>
7 <?ifndef env.QEMU_GA_DISTRO
?>
8 <?error Environment variable QEMU_GA_DISTRO undefined
?>
11 <?ifndef env.QEMU_GA_MANUFACTURER
?>
12 <?error Environment variable QEMU_GA_MANUFACTURER undefined
?>
16 <?error Define Arch to
32 or
64?>
19 <?ifndef var.Mingw_bin
?>
20 <?if $(var.Arch) =
"64"?>
21 <?define Mingw_bin=/usr/x86_64-w64-mingw32/sys-root/mingw/bin
?>
23 <?if $(var.Arch) =
"32"?>
24 <?define Mingw_bin=/usr/i686-w64-mingw32/sys-root/mingw/bin
?>
28 <?if $(var.Arch) =
"64"?>
29 <?define ArchLib=libgcc_s_seh-
1.dll
?>
30 <?define GaProgramFilesFolder=
"ProgramFiles64Folder" ?>
33 <?if $(var.Arch) =
"32"?>
34 <?define ArchLib=libgcc_s_sjlj-
1.dll
?>
35 <?define GaProgramFilesFolder=
"ProgramFilesFolder" ?>
38 <?ifndef var.ArchLib
?>
39 <?error Unexpected Arch value $(var.Arch)
?>
43 Name=
"QEMU guest agent"
45 UpgradeCode=
"{EB6B8302-C06E-4bec-ADAC-932C68A3A98D}"
46 Manufacturer=
"$(env.QEMU_GA_MANUFACTURER)"
47 Version=
"$(env.QEMU_GA_VERSION)"
49 <?if $(var.Arch) =
32 ?>
50 <Condition Message=
"Error: 32-bit version of Qemu GA can not be installed on 64-bit Windows.">NOT VersionNT64
</Condition>
53 Manufacturer=
"$(env.QEMU_GA_MANUFACTURER)"
54 InstallerVersion=
"200"
57 InstallScope=
"perMachine"
59 <Media Id=
"1" Cabinet=
"qemu_ga.$(env.QEMU_GA_VERSION).cab" EmbedCab=
"yes" />
60 <Property Id=
"WHSLogo">1</Property>
61 <Property Id=
"PREVIOUSVERSIONSINSTALLED" />
62 <Upgrade Id=
"{EB6B8302-C06E-4bec-ADAC-932C68A3A98D}">
64 Minimum=
"1.0.0.0" Maximum=
"$(env.QEMU_GA_VERSION)"
65 Property=
"PREVIOUSVERSIONSINSTALLED"
66 IncludeMinimum=
"yes" IncludeMaximum=
"no" />
69 <Directory Id=
"TARGETDIR" Name=
"SourceDir">
70 <Directory Id=
"$(var.GaProgramFilesFolder)" Name=
"QEMU Guest Agent">
71 <Directory Id=
"qemu_ga_directory" Name=
"Qemu-ga">
72 <Component Id=
"qemu_ga" Guid=
"{908B7199-DE2A-4dc6-A8D0-27A5AE444FEA}">
73 <File Id=
"qemu_ga.exe" Name=
"qemu-ga.exe" Source=
"../../qemu-ga.exe" KeyPath=
"yes" DiskId=
"1"/>
74 <?ifdef var.InstallVss
?>
75 <File Id=
"qga_vss.dll" Name=
"qga-vss.dll" Source=
"../vss-win32/qga-vss.dll" KeyPath=
"no" DiskId=
"1"/>
76 <File Id=
"qga_vss.tlb" Name=
"qga-vss.tlb" Source=
"../vss-win32/qga-vss.tlb" KeyPath=
"no" DiskId=
"1"/>
78 <File Id=
"iconv.dll" Name=
"iconv.dll" Source=
"$(var.Mingw_bin)/iconv.dll" KeyPath=
"no" DiskId=
"1"/>
79 <File Id=
"libgcc_arch_lib" Name=
"$(var.ArchLib)" Source=
"$(var.Mingw_bin)/$(var.ArchLib)" KeyPath=
"no" DiskId=
"1"/>
80 <File Id=
"libglib_2.0_0.dll" Name=
"libglib-2.0-0.dll" Source=
"$(var.Mingw_bin)/libglib-2.0-0.dll" KeyPath=
"no" DiskId=
"1"/>
81 <File Id=
"libintl_8.dll" Name=
"libintl-8.dll" Source=
"$(var.Mingw_bin)/libintl-8.dll" KeyPath=
"no" DiskId=
"1"/>
82 <File Id=
"libssp_0.dll" Name=
"libssp-0.dll" Source=
"$(var.Mingw_bin)/libssp-0.dll" KeyPath=
"no" DiskId=
"1"/>
83 <File Id=
"libwinpthread_1.dll" Name=
"libwinpthread-1.dll" Source=
"$(var.Mingw_bin)/libwinpthread-1.dll" KeyPath=
"no" DiskId=
"1"/>
89 DisplayName=
"QEMU Guest Agent"
90 Description=
"QEMU Guest Agent"
98 <ServiceControl Id=
"StartService" Start=
"install" Stop=
"both" Remove=
"uninstall" Name=
"QEMU-GA" Wait=
"no" />
101 <Component Id=
"registry_entries" Guid=
"d075d109-51ca-11e3-9f8b-000c29858960">
102 <RegistryKey Root=
"HKLM"
103 Key=
"Software\$(env.QEMU_GA_MANUFACTURER)\$(env.QEMU_GA_DISTRO)\Tools\QemuGA">
104 <RegistryValue Type=
"string" Name=
"ProductID" Value=
"fb0a0d66-c7fb-4e2e-a16b-c4a3bfe8d13b" />
105 <RegistryValue Type=
"string" Name=
"Version" Value=
"$(env.QEMU_GA_VERSION)" />
112 <Property Id=
"cmd" Value=
"cmd.exe"/>
114 <?ifdef var.InstallVss
?>
115 <CustomAction Id=
"RegisterCom"
116 ExeCommand='/c
"[qemu_ga_directory]qemu-ga.exe" -s vss-install'
123 <CustomAction Id=
"UnRegisterCom"
124 ExeCommand='/c
"[qemu_ga_directory]qemu-ga.exe" -s vss-uninstall'
132 <Feature Id=
"QEMUFeature" Title=
"QEMU Guest Agent" Level=
"1">
133 <ComponentRef Id=
"qemu_ga" />
134 <ComponentRef Id=
"registry_entries" />
137 <InstallExecuteSequence>
138 <RemoveExistingProducts Before=
"InstallInitialize" />
139 <?ifdef var.InstallVss
?>
140 <Custom Action=
"RegisterCom" After=
"InstallServices">NOT Installed
</Custom>
141 <Custom Action=
"UnRegisterCom" After=
"StopServices">Installed
</Custom>
143 </InstallExecuteSequence>