scx/scheds/meson.build
Tejun Heo 56bb963136 build: Use a single top-level rust workspace
Rust build was using two separate workspaces - rust/ and scheds/rust.
There's no reason to separate them and it makes doc generation tricky. Use
single top level workspace so that we can drive all rust building from
cargo.
2024-09-08 14:23:48 -10:00

12 lines
520 B
Meson

# BPF compilation uses the gen_bpf_o generator. The following should be
# passed in as extra_args.
bpf_includes = ['-I', join_paths(meson.current_source_dir(), 'include'),
'-I', join_paths(meson.current_source_dir(), 'include/vmlinux'),
'-I', join_paths(meson.current_source_dir(), 'include/bpf-compat'),]
# Common include paths for user C compilation. The following should be
# passed in as executable::include_directories.
user_c_includes = include_directories('include')
subdir('c')