Files
gentoo-utils/meson.build
John Turner 7c404ca8c5 add fuzzer
2025-11-16 20:17:35 +00:00

23 lines
502 B
Meson

project(
'gentoo-utils',
['rust', 'cpp'],
meson_version: '>=1.9.1',
default_options: {'rust_std': '2024', 'rust_nightly': 'enabled'},
)
rust = import('rust')
mon = dependency('mon-0.1-rs')
get = dependency('get-0.1-rs')
itertools = dependency('itertools-0.14-rs')
thiserror = subproject('thiserror').get_variable('thiserror')
gentoo_utils = static_library(
'gentoo_utils',
'src/lib.rs',
dependencies: [mon, get, itertools],
link_with: [thiserror],
)
subdir('tests')