mesa/subprojects/packagefiles/log-0.4-rs/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
348 B
Meson
Raw Normal View History

# 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]
)