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