mesa/subprojects/packagefiles/bitflags-2-rs/meson.build

22 lines
362 B
Meson
Raw Normal View History

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