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.
 
 
 
 
 
 

488 B

Consistency between declare_dependency() and pkgconfig.generate() variables

The variables keyword argument in declare_dependency() used to only support dictionary and pkgconfig.generate() only list of strings. They now both support dictionary and list of strings in the format 'name=value'. This makes easier to share a common set of variables for both:

vars = {'foo': 'bar'}
dep = declare_dependency(..., variables: vars)
pkg.generate(..., variables: vars)