blob: cd08bd953ae965ee2db4404af47eb4309109b971 [file] [log] [blame]
Paolo Bonzinif15bff22019-07-18 13:19:02 +02001qga_qapi_outputs = [
2 'qga-qapi-commands.c',
3 'qga-qapi-commands.h',
Paolo Bonzinif15bff22019-07-18 13:19:02 +02004 'qga-qapi-emit-events.c',
5 'qga-qapi-emit-events.h',
6 'qga-qapi-events.c',
7 'qga-qapi-events.h',
8 'qga-qapi-init-commands.c',
9 'qga-qapi-init-commands.h',
10 'qga-qapi-introspect.c',
11 'qga-qapi-introspect.h',
12 'qga-qapi-types.c',
13 'qga-qapi-types.h',
14 'qga-qapi-visit.c',
15 'qga-qapi-visit.h',
16]
17
18qga_qapi_files = custom_target('QGA QAPI files',
Peter Maydelldb161152020-09-25 17:23:03 +010019 output: qga_qapi_outputs,
Paolo Bonzinif15bff22019-07-18 13:19:02 +020020 input: 'qapi-schema.json',
21 command: [ qapi_gen, '-o', 'qga', '-p', 'qga-', '@INPUT0@' ],
22 depend_files: qapi_gen_depends)
Paolo Bonziniacfdaac2020-08-05 13:07:48 +020023
Paolo Bonzinif15bff22019-07-18 13:19:02 +020024qga_ss = ss.source_set()
Paolo Bonziniacfdaac2020-08-05 13:07:48 +020025i = 0
26foreach output: qga_qapi_outputs
27 qga_ss.add(qga_qapi_files[i])
28 i = i + 1
29endforeach
Paolo Bonziniacfdaac2020-08-05 13:07:48 +020030
Paolo Bonzinif15bff22019-07-18 13:19:02 +020031qga_ss.add(files(
32 'commands.c',
33 'guest-agent-command-state.c',
34 'main.c',
35))
36qga_ss.add(when: 'CONFIG_POSIX', if_true: files(
37 'channel-posix.c',
38 'commands-posix.c'))
39qga_ss.add(when: 'CONFIG_WIN32', if_true: files(
40 'channel-win32.c',
41 'commands-win32.c',
42 'service-win32.c',
43 'vss-win32.c'
44))
45
46qga_ss = qga_ss.apply(config_host, strict: false)
47
48qga = executable('qemu-ga', qga_ss.sources(),
49 link_args: config_host['LIBS_QGA'].split(),
50 dependencies: [qemuutil, libudev],
51 install: true)
Paolo Bonzini588a19f2020-01-28 15:06:16 +010052all_qga = [qga]
Marc-André Lureau7272fc72019-07-15 11:39:13 +040053
54if targetos == 'windows'
55 if 'CONFIG_QGA_VSS' in config_host
56 subdir('vss-win32')
Marc-André Lureau328ec322019-07-15 13:06:20 +040057 else
58 gen_tlb = []
59 endif
60
61 wixl = find_program('wixl', required: false)
62 if wixl.found()
63 deps = [gen_tlb, qga]
64 if 'CONFIG_QGA_VSS' in config_host and 'QEMU_GA_MSI_WITH_VSS' in config_host
65 deps += qga_vss
66 endif
67 qga_msi = custom_target('QGA MSI',
68 input: files('installer/qemu-ga.wxs'),
69 output: 'qemu-ga-@0@.msi'.format(config_host['ARCH']),
70 depends: deps,
71 command: [
Marc-André Lureau18240fd2020-09-11 14:42:47 +020072 find_program('env'),
Marc-André Lureau328ec322019-07-15 13:06:20 +040073 'QEMU_GA_VERSION=' + config_host['QEMU_GA_VERSION'],
74 'QEMU_GA_MANUFACTURER=' + config_host['QEMU_GA_MANUFACTURER'],
75 'QEMU_GA_DISTRO=' + config_host['QEMU_GA_DISTRO'],
76 'BUILD_DIR=' + meson.build_root(),
77 wixl, '-o', '@OUTPUT0@', '@INPUT0@',
78 config_host['QEMU_GA_MSI_ARCH'].split(),
79 config_host['QEMU_GA_MSI_WITH_VSS'].split(),
80 config_host['QEMU_GA_MSI_MINGW_DLL_PATH'].split(),
81 ])
Paolo Bonzini588a19f2020-01-28 15:06:16 +010082 all_qga += [qga_msi]
Marc-André Lureau328ec322019-07-15 13:06:20 +040083 alias_target('msi', qga_msi)
Marc-André Lureau7272fc72019-07-15 11:39:13 +040084 endif
Marc-André Lureau8ab1aab2020-08-26 17:06:21 +040085else
86 install_subdir('run', install_dir: get_option('localstatedir'))
Marc-André Lureau7272fc72019-07-15 11:39:13 +040087endif
Paolo Bonzini588a19f2020-01-28 15:06:16 +010088
89alias_target('qemu-ga', all_qga)