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.
15 lines
446 B
15 lines
446 B
## Introduce dataonly for the pkgconfig module |
|
This allows users to disable writing out the inbuilt variables to |
|
the pkg-config file as they might actualy not be required. |
|
|
|
One reason to have this is for architecture-independent pkg-config |
|
files in projects which also have architecture-dependent outputs. |
|
|
|
``` |
|
pkgg.generate( |
|
name : 'libhello_nolib', |
|
description : 'A minimalistic pkgconfig file.', |
|
version : libver, |
|
dataonly: true |
|
) |
|
```
|
|
|