mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
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>
21 lines
348 B
Meson
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]
|
|
)
|