From cc610e7b544c94a63c165bed0fa58d6689db3963 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Mon, 20 Dec 2021 00:33:16 -0600 Subject: [PATCH] generate and install .pc file resolves #348 --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson.build b/meson.build index 9199a7ea..23b40a39 100644 --- a/meson.build +++ b/meson.build @@ -174,3 +174,8 @@ if libui_mode == 'static' endif subdir('test') subdir('examples') + +pkg = import('pkgconfig') +pkg.generate( + libui_libui, + description : 'a portable GUI library for C')