blob: 2ed0ae5b1dd987c76720125656c1174e9e83ae84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-License-Identifier: GPL-2.0-or-later
vfio_user_ss = ss.source_set()
vfio_user_ss.add(files(
'container.c',
'device.c',
'pci.c',
'proxy.c',
))
system_ss.add_all(when: 'CONFIG_VFIO_USER', if_true: vfio_user_ss)
|