]> git.proxmox.com Git - mirror_qemu.git/blame - backends/meson.build
Merge tag 'win-socket-pull-request' of https://gitlab.com/marcandre.lureau/qemu into...
[mirror_qemu.git] / backends / meson.build
CommitLineData
ab318051
MAL
1softmmu_ss.add([files(
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
13softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files('rng-random.c'))
14softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files('hostmem-file.c'))
15softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('hostmem-memfd.c'))
39fff6f3
LH
16if keyutils.found()
17 softmmu_ss.add(keyutils, files('cryptodev-lkcf.c'))
18endif
43b6d7ee
PB
19if have_vhost_user
20 softmmu_ss.add(when: 'CONFIG_VIRTIO', if_true: files('vhost-user.c'))
21endif
ab318051 22softmmu_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost.c'))
43b6d7ee
PB
23if have_vhost_user_crypto
24 softmmu_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost-user.c'))
25endif
7544060e 26softmmu_ss.add(when: gio, if_true: files('dbus-vmstate.c'))
c6c02320 27softmmu_ss.add(when: 'CONFIG_SGX', if_true: files('hostmem-epc.c'))
ab318051
MAL
28
29subdir('tpm')