mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-26 21:10:42 +00:00
6ea11938b2
-----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEhpWov9P5fNqsNXdanKSrs4Grc8gFAmOY5qgACgkQnKSrs4Gr c8is4ggAuXF4kEk+y8fUw60ykKytM5XeU3emNUw9EPoULhQgEbL+Zc+hH6ZCpn0b Pv+Vb4WjkxvY7dEDwvnsfA0Mu3Othy4B+ON4FebQzEhU3fedTD1owGnLlxBIphFv 0aURRbhC865PUk3BwHef/Ic06QQNSVL6fOqyqFuQ+bVgktXIMk4VjYofCJ39S6TP bc8kWNBKrkxQUWaLH5BF4RSFV4/ghvWO5wjvsF0pbxMtkR3lotR9FHQ+S4UbWGee b7mUoPB/qlCWMDRCTZujSmP90mYzZamOS+VbpEJwUDhX1g7ScHu94CMjROuX2l2w MWkWVu+92QUUTcNbDrUO9Cun61gkFg== =Px/i -----END PGP SIGNATURE----- Merge tag 'v7.2.0' into sync/qemu-7.2.0 v7.2.0 release
60 lines
1.8 KiB
Meson
60 lines
1.8 KiB
Meson
softmmu_ss.add(files(
|
|
'announce.c',
|
|
'checksum.c',
|
|
'colo-compare.c',
|
|
'colo.c',
|
|
'dump.c',
|
|
'eth.c',
|
|
'filter-buffer.c',
|
|
'filter-mirror.c',
|
|
'filter-rewriter.c',
|
|
'filter.c',
|
|
'hub.c',
|
|
'net.c',
|
|
'queue.c',
|
|
'socket.c',
|
|
'stream.c',
|
|
'dgram.c',
|
|
'util.c',
|
|
))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_TCG', if_true: files('filter-replay.c'))
|
|
|
|
if have_l2tpv3
|
|
softmmu_ss.add(files('l2tpv3.c'))
|
|
endif
|
|
softmmu_ss.add(when: slirp, if_true: files('slirp.c'))
|
|
softmmu_ss.add(when: vde, if_true: files('vde.c'))
|
|
if have_netmap
|
|
softmmu_ss.add(files('netmap.c'))
|
|
endif
|
|
if have_vhost_net_user
|
|
softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-user.c'), if_false: files('vhost-user-stub.c'))
|
|
softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-user-stub.c'))
|
|
endif
|
|
|
|
softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('tap-linux.c'))
|
|
softmmu_ss.add(when: 'CONFIG_BSD', if_true: files('tap-bsd.c'))
|
|
softmmu_ss.add(when: 'CONFIG_SOLARIS', if_true: files('tap-solaris.c'))
|
|
tap_posix = ['tap.c']
|
|
if not config_host.has_key('CONFIG_LINUX') and not config_host.has_key('CONFIG_BSD') and not config_host.has_key('CONFIG_SOLARIS')
|
|
tap_posix += 'tap-stub.c'
|
|
endif
|
|
softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files(tap_posix))
|
|
softmmu_ss.add(when: 'CONFIG_WIN32', if_true: files('tap-win32.c'))
|
|
softmmu_ss.add([libpcap, files('pcap.c')])
|
|
softmmu_ss.add(when: 'CONFIG_WIN32', if_true: files('capture_win_ifnames.c'))
|
|
if have_vhost_net_vdpa
|
|
softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-vdpa.c'), if_false: files('vhost-vdpa-stub.c'))
|
|
softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-vdpa-stub.c'))
|
|
endif
|
|
|
|
vmnet_files = files(
|
|
'vmnet-common.m',
|
|
'vmnet-bridged.m',
|
|
'vmnet-host.c',
|
|
'vmnet-shared.c'
|
|
)
|
|
softmmu_ss.add(when: vmnet, if_true: vmnet_files)
|
|
subdir('can')
|