mirror of
https://github.com/sched-ext/scx.git
synced 2024-12-02 07:17:12 +00:00
b95cfb0772
The target wasn't dependent on the previous sched so building all schedulers ended up not building scx_mitosis which broke the install script.
9 lines
380 B
Meson
9 lines
380 B
Meson
sched = custom_target('scx_mitosis',
|
|
output: '@PLAINNAME@.__PHONY__',
|
|
input: 'Cargo.toml',
|
|
command: [cargo, 'build', '--manifest-path=@INPUT@', '--target-dir=@OUTDIR@',
|
|
cargo_build_args],
|
|
env: cargo_env,
|
|
depends: [libbpf, bpftool_target, sched],
|
|
build_always_stale: true)
|