aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-02-15 10:37:14 +0100
committerSimon Ser <contact@emersion.fr>2023-02-15 10:37:14 +0100
commitfaa631c348d983e53b7c3dacfd48208894a0f0d6 (patch)
treea91c83c890d1f352345a873b87eaba4930312d9b /meson.build
parent068280201afdb8d87b1c624d115bed8866c6852e (diff)
build: remove unnecessary pkgconfig arguments
If left unspecified, these defaults to the project name and version.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
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,
)