Files
mesa/subprojects/packagefiles/zerocopy/meson.build
Gurchetan Singh 68c70c3eff subprojects: add zerocopy
Version 0.8.13 supported in:

     - AOSP
     - Fedora (https://src.fedoraproject.org/rpms/rust-zerocopy)

Acked-by: Aaron Ruby <aruby@qnx.com>
Reviewed-by: @LingMan
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35210>
2025-06-17 22:28:54 +00:00

27 lines
571 B
Meson

# Copyright © 2024 Google
# SPDX-License-Identifier: MIT
project(
'zerocopy',
'rust',
version : '0.8.13',
license : 'MIT OR Apache-2.0 OR BSD 2-Clause',
)
zerocopy_args = ['--cfg', 'feature="derive"']
zerocopy_derive = subproject('zerocopy-derive').get_variable('lib')
lib = static_library(
'zerocopy',
'src/lib.rs',
override_options : ['rust_std=2021', 'build.rust_std=2021'],
rust_abi : 'rust',
native : true,
rust_args: zerocopy_args,
link_with : [zerocopy_derive]
)
dep_zerocopy = declare_dependency(
link_with : [lib, zerocopy_derive]
)