2021-01-29 11:46:07 -05:00
|
|
|
remote_ss = ss.source_set()
|
|
|
|
|
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('machine.c'))
|
2021-01-29 11:46:10 -05:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('mpqemu-link.c'))
|
2021-01-29 11:46:11 -05:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('message.c'))
|
2021-01-29 11:46:12 -05:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('remote-obj.c'))
|
2021-01-29 11:46:14 -05:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('proxy.c'))
|
2021-01-29 11:46:19 -05:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('iohub.c'))
|
2022-06-13 16:26:30 -04:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('iommu.c'))
|
2022-06-13 16:26:25 -04:00
|
|
|
remote_ss.add(when: 'CONFIG_VFIO_USER_SERVER', if_true: files('vfio-user-obj.c'))
|
2021-01-29 11:46:07 -05:00
|
|
|
|
2022-06-13 16:26:24 -04:00
|
|
|
remote_ss.add(when: 'CONFIG_VFIO_USER_SERVER', if_true: libvfio_user_dep)
|
|
|
|
|
2021-01-29 11:46:13 -05:00
|
|
|
specific_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('memory.c'))
|
2021-01-29 11:46:18 -05:00
|
|
|
specific_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('proxy-memory-listener.c'))
|
2021-01-29 11:46:13 -05:00
|
|
|
|
2021-01-29 11:46:07 -05:00
|
|
|
softmmu_ss.add_all(when: 'CONFIG_MULTIPROCESS', if_true: remote_ss)
|