2021-01-29 17:46:07 +01:00
|
|
|
remote_ss = ss.source_set()
|
|
|
|
|
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('machine.c'))
|
2021-01-29 17:46:10 +01:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('mpqemu-link.c'))
|
2021-01-29 17:46:11 +01:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('message.c'))
|
2021-01-29 17:46:12 +01:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('remote-obj.c'))
|
2021-01-29 17:46:14 +01:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('proxy.c'))
|
2021-01-29 17:46:19 +01:00
|
|
|
remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('iohub.c'))
|
2021-01-29 17:46:07 +01:00
|
|
|
|
2021-01-29 17:46:13 +01:00
|
|
|
specific_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('memory.c'))
|
2021-01-29 17:46:18 +01:00
|
|
|
specific_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('proxy-memory-listener.c'))
|
2021-01-29 17:46:13 +01:00
|
|
|
|
2021-01-29 17:46:07 +01:00
|
|
|
softmmu_ss.add_all(when: 'CONFIG_MULTIPROCESS', if_true: remote_ss)
|