mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 22:20:09 +01:00
Essentially:
find ./ -type f -exec sed -i -e "s/license :'/license : '/g" {} \;
Suggested-by: @LingMan
Reviewed-by: @LingMan
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35210>
21 lines
368 B
Meson
21 lines
368 B
Meson
project(
|
|
'pest',
|
|
'rust',
|
|
version : '2.8.0',
|
|
license : 'MIT OR Apache-2.0',
|
|
)
|
|
|
|
ucd = subproject('ucd-trie').get_variable('lib')
|
|
|
|
lib = static_library(
|
|
'pest',
|
|
'src/lib.rs',
|
|
override_options : ['rust_std=2021', 'build.rust_std=2021'],
|
|
link_with : [ucd],
|
|
rust_abi : 'rust',
|
|
native : true,
|
|
)
|
|
|
|
dep_pest = declare_dependency(
|
|
link_with : [lib, ucd],
|
|
)
|