4 'qga-qapi-emit-events.c',
5 'qga-qapi-emit-events.h',
8 'qga-qapi-init-commands.c',
9 'qga-qapi-init-commands.h',
10 'qga-qapi-introspect.c',
11 'qga-qapi-introspect.h',
18 qga_qapi_files = custom_target('QGA QAPI files',
19 output: qga_qapi_outputs,
20 input: 'qapi-schema.json',
21 command: [ qapi_gen, '-o', 'qga', '-p', 'qga-', '@INPUT0@' ],
22 depend_files: qapi_gen_depends)
24 qga_ss = ss.source_set()
25 qga_ss.add(qga_qapi_files.to_list())
28 'guest-agent-command-state.c',
31 qga_ss.add(when: 'CONFIG_POSIX', if_true: files(
34 'commands-posix-ssh.c',
36 qga_ss.add(when: 'CONFIG_WIN32', if_true: files(
43 qga_ss = qga_ss.apply(config_host, strict: false)
45 qga = executable('qemu-ga', qga_ss.sources(),
46 link_args: config_host['LIBS_QGA'].split(),
47 dependencies: [qemuutil, libudev],
51 if targetos == 'windows'
52 if 'CONFIG_QGA_VSS' in config_host
59 'x86': ['-D', 'Arch=32'],
60 'x86_64': ['-a', 'x64', '-D', 'Arch=64']
63 if cpu in qemu_ga_msi_arch
64 wixl = find_program('wixl', required: get_option('guest_agent_msi'))
65 elif get_option('guest_agent_msi').enabled()
66 error('CPU not supported for building guest agent installation package')
72 if 'CONFIG_QGA_VSS' in config_host
73 qemu_ga_msi_vss = ['-D', 'InstallVss']
76 qga_msi = custom_target('QGA MSI',
77 input: files('installer/qemu-ga.wxs'),
78 output: 'qemu-ga-@0@.msi'.format(config_host['ARCH']),
82 'QEMU_GA_VERSION=' + config_host['QEMU_GA_VERSION'],
83 'QEMU_GA_MANUFACTURER=' + config_host['QEMU_GA_MANUFACTURER'],
84 'QEMU_GA_DISTRO=' + config_host['QEMU_GA_DISTRO'],
85 'BUILD_DIR=' + meson.build_root(),
86 wixl, '-o', '@OUTPUT0@', '@INPUT0@',
87 qemu_ga_msi_arch[cpu],
89 '-D', 'Mingw_dlls=' + config_host['QEMU_GA_MSI_MINGW_DLL_PATH'],
92 alias_target('msi', qga_msi)
95 if get_option('guest_agent_msi').enabled()
96 error('MSI guest agent package is available only for MinGW Windows cross-compilation')
98 install_subdir('run', install_dir: get_option('localstatedir'))
101 alias_target('qemu-ga', all_qga)
103 test_env = environment()
104 test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
105 test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
107 # disable qga-ssh-test for now. glib's G_TEST_OPTION_ISOLATE_DIRS triggers
108 # the leak detector in build-oss-fuzz Gitlab CI test. we should re-enable
109 # this when an alternative is implemented or when the underlying glib
110 # issue is identified/fix
111 #if 'CONFIG_POSIX' in config_host
113 srcs = [files('commands-posix-ssh.c')]
115 foreach output: qga_qapi_outputs
116 if output.startswith('qga-qapi-types') or output.startswith('qga-qapi-visit')
117 srcs += qga_qapi_files[i]
121 qga_ssh_test = executable('qga-ssh-test', srcs,
122 dependencies: [qemuutil],
123 c_args: ['-DQGA_BUILD_UNIT_TEST'])
128 suite: ['unit', 'qga'])