mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 03:14:36 +00:00
19 lines
461 B
Meson
19 lines
461 B
Meson
# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
# This is a hack to make the dump input be in a directory by itself.
|
|
#
|
|
fuzz_dump_input_dat = custom_target(
|
|
'fuzz-dump-input',
|
|
output: 'fuzz-dump-input.dat',
|
|
command: [
|
|
muon,
|
|
'internal',
|
|
'eval',
|
|
meson.current_source_dir() / 'gen_dump.meson',
|
|
'@OUTPUT@',
|
|
],
|
|
)
|
|
|
|
fuzz_dump_input = meson.current_build_dir()
|