diff options
author | David Robillard <d@drobilla.net> | 2022-10-05 15:47:27 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-05 15:47:27 -0400 |
commit | e325cdcd73600275b89da768bb5b29c7ea2a124a (patch) | |
tree | 67a28014c717a047023e94727eb4e7d551ff262b | |
parent | 6c5f44eaff96225cb6b13d9087dd3e3bb8067470 (diff) | |
download | suil-e325cdcd73600275b89da768bb5b29c7ea2a124a.tar.gz suil-e325cdcd73600275b89da768bb5b29c7ea2a124a.tar.bz2 suil-e325cdcd73600275b89da768bb5b29c7ea2a124a.zip |
Fix dependencies in pkg-config file
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +suil (0.10.19) unstable; urgency=medium + + * Fix dependencies in pkg-config file + + -- David Robillard <d@drobilla.net> Wed, 05 Oct 2022 19:47:11 +0000 + suil (0.10.18) stable; urgency=medium * Add project metadata diff --git a/meson.build b/meson.build index e6467c1..05c798d 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: 0BSD OR ISC project('suil', ['c', 'cpp'], - version: '0.10.18', + version: '0.10.19', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ @@ -167,6 +167,7 @@ pkg.generate( extra_cflags: extra_c_args, filebase: versioned_name, name: 'Suil', + requires: ['lv2'], subdirs: [versioned_name], version: meson.project_version(), ) |