summary refs log tree commit diff
path: root/host/start-vmm/subprojects/packagefiles/unicode-ident/meson.build
blob: 7146ec49b2cf11544e0371d763bcbc1e8040b91d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is>
# SPDX-License-Identifier: MIT

project('unicode-ident', 'rust', version : '1.0.9',
  default_options : ['build.rust_std=2018', 'rust_std=2018'])

unicode_ident = static_library('unicode_ident', 'src/lib.rs',
  native : true,
  rust_args : ['-C', 'panic=unwind'],
  rust_crate_type : 'rlib')

unicode_ident_dep = declare_dependency(link_with : unicode_ident)

meson.override_dependency('unicode-ident', unicode_ident_dep, native : true)