The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
384 B
12 lines
384 B
5 years ago
|
project('sub_implicit', 'c', version : '1.0')
|
||
|
|
||
|
dep = declare_dependency()
|
||
|
meson.override_dependency('sub_implicit', dep)
|
||
5 years ago
|
meson.override_dependency('sub_implicit_provide1', dep)
|
||
|
|
||
4 years ago
|
# This one is not overridden but the wrap file tells the variable name to use.
|
||
5 years ago
|
sub_implicit_provide2_dep = dep
|
||
5 years ago
|
|
||
4 years ago
|
# This one is not overridden but the wrap file tells the variable name to use.
|
||
5 years ago
|
glib_dep = dep
|