]> git.proxmox.com Git - mirror_qemu.git/blame - backends/meson.build
meson: remove CONFIG_POSIX and CONFIG_WIN32 from config_targetos
[mirror_qemu.git] / backends / meson.build
CommitLineData
de6cd759 1system_ss.add([files(
ab318051 2 'cryptodev-builtin.c',
ef52091a 3 'cryptodev-hmp-cmds.c',
ab318051
MAL
4 'cryptodev.c',
5 'hostmem-ram.c',
6 'hostmem.c',
7 'rng-builtin.c',
8 'rng-egd.c',
9 'rng.c',
f91f9f25 10 'confidential-guest-support.c',
ab318051
MAL
11), numa])
12
dc495494
PB
13if targetos != 'windows'
14 system_ss.add(files('rng-random.c'))
15 system_ss.add(files('hostmem-file.c'))
16endif
53e8868d
PB
17if targetos == 'linux'
18 system_ss.add(files('hostmem-memfd.c'))
19endif
39fff6f3 20if keyutils.found()
de6cd759 21 system_ss.add(keyutils, files('cryptodev-lkcf.c'))
39fff6f3 22endif
43b6d7ee 23if have_vhost_user
de6cd759 24 system_ss.add(when: 'CONFIG_VIRTIO', if_true: files('vhost-user.c'))
43b6d7ee 25endif
de6cd759 26system_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost.c'))
6e6d8ac6 27system_ss.add(when: 'CONFIG_IOMMUFD', if_true: files('iommufd.c'))
43b6d7ee 28if have_vhost_user_crypto
de6cd759 29 system_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost-user.c'))
43b6d7ee 30endif
de6cd759
PMD
31system_ss.add(when: gio, if_true: files('dbus-vmstate.c'))
32system_ss.add(when: 'CONFIG_SGX', if_true: files('hostmem-epc.c'))
ab318051
MAL
33
34subdir('tpm')