mirror of https://github.com/xemu-project/xemu.git
16 lines
514 B
Meson
16 lines
514 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',
|
|
))
|
|
|
|
system_ss.add(when: 'CONFIG_ALL', if_true: files('cxl-host-stubs.c'))
|