diff options
author | Simon Ser <contact@emersion.fr> | 2023-02-15 10:37:14 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-02-15 10:37:14 +0100 |
commit | faa631c348d983e53b7c3dacfd48208894a0f0d6 (patch) | |
tree | a91c83c890d1f352345a873b87eaba4930312d9b | |
parent | 068280201afdb8d87b1c624d115bed8866c6852e (diff) |
build: remove unnecessary pkgconfig arguments
If left unspecified, these defaults to the project name and version.
-rw-r--r-- | meson.build | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meson.build b/meson.build index 0a584621..5b0d0b9b 100644 --- a/meson.build +++ b/meson.build @@ -196,10 +196,8 @@ if get_option('examples') endif pkgconfig = import('pkgconfig') -pkgconfig.generate(lib_wlr, - version: meson.project_version(), - filebase: meson.project_name(), - name: meson.project_name(), +pkgconfig.generate( + lib_wlr, description: 'Wayland compositor library', variables: wlr_vars, ) |