mesa/subprojects/packagefiles/log/meson.build
Gurchetan Singh 92d7504de3 subprojects: add log
Version 0.4.27 available in:

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

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

21 lines
348 B
Meson

# Copyright © 2024 Google
# SPDX-License-Identifier: MIT
project(
'log',
'rust',
version : '0.4.27',
license : 'MIT OR Apache-2.0',
)
lib = static_library(
'log',
'src/lib.rs',
override_options : ['rust_std=2021', 'build.rust_std=2021'],
rust_abi : 'rust',
native : true,
)
dep_log = declare_dependency(
link_with : [lib]
)