xref: /qemu/net/meson.build (revision c3bef3b4)
1softmmu_ss.add(files(
2  'announce.c',
3  'checksum.c',
4  'colo-compare.c',
5  'colo.c',
6  'dump.c',
7  'eth.c',
8  'filter-buffer.c',
9  'filter-mirror.c',
10  'filter-rewriter.c',
11  'filter.c',
12  'hub.c',
13  'net-hmp-cmds.c',
14  'net.c',
15  'queue.c',
16  'socket.c',
17  'stream.c',
18  'dgram.c',
19  'util.c',
20))
21
22softmmu_ss.add(when: 'CONFIG_TCG', if_true: files('filter-replay.c'))
23
24if have_l2tpv3
25  softmmu_ss.add(files('l2tpv3.c'))
26endif
27softmmu_ss.add(when: slirp, if_true: files('slirp.c'))
28softmmu_ss.add(when: vde, if_true: files('vde.c'))
29if have_netmap
30  softmmu_ss.add(files('netmap.c'))
31endif
32if have_vhost_net_user
33  softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-user.c'), if_false: files('vhost-user-stub.c'))
34  softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-user-stub.c'))
35endif
36
37softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('tap-linux.c'))
38softmmu_ss.add(when: 'CONFIG_BSD', if_true: files('tap-bsd.c'))
39softmmu_ss.add(when: 'CONFIG_SOLARIS', if_true: files('tap-solaris.c'))
40tap_posix = ['tap.c']
41if not config_host.has_key('CONFIG_LINUX') and not config_host.has_key('CONFIG_BSD') and not config_host.has_key('CONFIG_SOLARIS')
42  tap_posix += 'tap-stub.c'
43endif
44softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files(tap_posix))
45softmmu_ss.add(when: 'CONFIG_WIN32', if_true: files('tap-win32.c'))
46if have_vhost_net_vdpa
47  softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-vdpa.c'), if_false: files('vhost-vdpa-stub.c'))
48  softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-vdpa-stub.c'))
49endif
50
51vmnet_files = files(
52  'vmnet-common.m',
53  'vmnet-bridged.m',
54  'vmnet-host.c',
55  'vmnet-shared.c'
56)
57softmmu_ss.add(when: vmnet, if_true: vmnet_files)
58subdir('can')
59