qemu/net/can/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
198 B
Meson
Raw Normal View History

can_ss = ss.source_set()
can_ss.add(files('can_core.c', 'can_host.c'))
if host_os == 'linux'
can_ss.add(files('can_socketcan.c'))
endif
system_ss.add_all(when: 'CONFIG_CAN_BUS', if_true: can_ss)