mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

CONFIG_ALL is tricky to use and was ported over to Meson from the recursive processing of Makefile variables. Meson sourcesets however have all_sources() and all_dependencies() methods that remove the need for it. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
13 lines
443 B
Meson
13 lines
443 B
Meson
system_ss.add(when: 'CONFIG_CXL',
|
|
if_true: files(
|
|
'cxl-component-utils.c',
|
|
'cxl-device-utils.c',
|
|
'cxl-mailbox-utils.c',
|
|
'cxl-host.c',
|
|
'cxl-cdat.c',
|
|
'cxl-events.c',
|
|
'switch-mailbox-cci.c',
|
|
),
|
|
if_false: files(
|
|
'cxl-host-stubs.c',
|
|
))
|