summaryrefslogtreecommitdiff
path: root/fuzz/atom/parser/meson.build
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-18 22:43:22 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-18 22:43:22 +0000
commite01637fd3a0a59ffea320a7df9770e73f486c91e (patch)
treefa76152764a7a53a0f6dab21585064e14406a07a /fuzz/atom/parser/meson.build
parente0cc7f6a03008f623d3286678f6dc22f8cebef51 (diff)
downloadgentoo-utils-e01637fd3a0a59ffea320a7df9770e73f486c91e.tar.gz
setup meson to allow building multiple fuzzers easily
Diffstat (limited to 'fuzz/atom/parser/meson.build')
-rw-r--r--fuzz/atom/parser/meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/fuzz/atom/parser/meson.build b/fuzz/atom/parser/meson.build
new file mode 100644
index 0000000..efc84c6
--- /dev/null
+++ b/fuzz/atom/parser/meson.build
@@ -0,0 +1,6 @@
+fuzzers += {
+ 'atom_parser': [
+ meson.current_source_dir() / 'gencorpus.rs',
+ meson.current_source_dir() / 'fuzz.rs',
+ ],
+}