xref: /qemu/net/meson.build (revision 8b7b9c5c)
1system_ss.add(files(
2  'announce.c',
3  'checksum.c',
4  'dump.c',
5  'eth.c',
6  'filter-buffer.c',
7  'filter-mirror.c',
8  'filter.c',
9  'hub.c',
10  'net-hmp-cmds.c',
11  'net.c',
12  'queue.c',
13  'socket.c',
14  'stream.c',
15  'dgram.c',
16  'util.c',
17))
18
19if get_option('replication').allowed() or \
20    get_option('colo_proxy').allowed()
21  system_ss.add(files('colo-compare.c'))
22  system_ss.add(files('colo.c'))
23endif
24
25if get_option('colo_proxy').allowed()
26  system_ss.add(files('filter-rewriter.c'))
27endif
28
29system_ss.add(when: 'CONFIG_TCG', if_true: files('filter-replay.c'))
30
31if have_l2tpv3
32  system_ss.add(files('l2tpv3.c'))
33endif
34system_ss.add(when: slirp, if_true: files('slirp.c'))
35system_ss.add(when: vde, if_true: files('vde.c'))
36if have_netmap
37  system_ss.add(files('netmap.c'))
38endif
39
40system_ss.add(when: libxdp, if_true: files('af-xdp.c'))
41
42if have_vhost_net_user
43  system_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-user.c'), if_false: files('vhost-user-stub.c'))
44  system_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-user-stub.c'))
45endif
46
47if targetos == 'windows'
48  system_ss.add(files('tap-win32.c'))
49elif targetos == 'linux'
50  system_ss.add(files('tap.c', 'tap-linux.c'))
51elif targetos in bsd_oses
52  system_ss.add(files('tap.c', 'tap-bsd.c'))
53elif targetos == 'sunos'
54  system_ss.add(files('tap.c', 'tap-solaris.c'))
55else
56  system_ss.add(files('tap.c', 'tap-stub.c'))
57endif
58if have_vhost_net_vdpa
59  system_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-vdpa.c'), if_false: files('vhost-vdpa-stub.c'))
60  system_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-vdpa-stub.c'))
61endif
62
63vmnet_files = files(
64  'vmnet-common.m',
65  'vmnet-bridged.m',
66  'vmnet-host.c',
67  'vmnet-shared.c'
68)
69system_ss.add(when: vmnet, if_true: vmnet_files)
70subdir('can')
71