]> git.proxmox.com Git - mirror_qemu.git/blob - hw/9pfs/meson.build
Merge remote-tracking branch 'remotes/cschoenebeck/tags/pull-9p-20201106' into staging
[mirror_qemu.git] / hw / 9pfs / meson.build
1 fs_ss = ss.source_set()
2 fs_ss.add(files(
3 '9p-local.c',
4 '9p-posix-acl.c',
5 '9p-proxy.c',
6 '9p-synth.c',
7 '9p-util.c',
8 '9p-xattr-user.c',
9 '9p-xattr.c',
10 '9p.c',
11 'codir.c',
12 'cofile.c',
13 'cofs.c',
14 'coth.c',
15 'coxattr.c',
16 ))
17 fs_ss.add(when: 'CONFIG_XEN', if_true: files('xen-9p-backend.c'))
18 softmmu_ss.add_all(when: 'CONFIG_FSDEV_9P', if_true: fs_ss)
19
20 specific_ss.add(when: 'CONFIG_VIRTIO_9P', if_true: files('virtio-9p-device.c'))