libgnunetchat

library for GNUnet Messenger
Log | Files | Refs | README | LICENSE

commit 0d57397ae64198c91f92e73114bfdaa7f1172944
parent f542aafadf0741fcb62f1a70784e332bd5336572
Author: TheJackiMonster <thejackimonster@gmail.com>
Date:   Fri,  3 Feb 2023 21:27:51 +0100

Add pkgconfig target for the library

Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>

Diffstat:
Mmeson.build | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/meson.build b/meson.build @@ -25,6 +25,8 @@ project( version: run_command('contrib/get_version.sh').stdout().strip(), ) +pkg = import('pkgconfig') + src_include = include_directories('src', 'include/gnunet') tests_include = include_directories('tests', 'include') @@ -51,6 +53,11 @@ gnunetchat_lib = library( extra_files: gnunetchat_internal, ) +pkg.generate( + gnunetchat_lib, + description: 'A client-side library for applications to use the Messenger service of GNUnet', +) + subdir('tests') run_target(