From: Andrea Zagli Date: Wed, 24 Aug 2016 15:39:58 +0000 (+0200) Subject: meson: added pkg-config file generation. X-Git-Tag: v0.0.2~1^2~9 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=2ad7d1be6172649ed11862cba567c512b8942b97;p=libzakutils meson: added pkg-config file generation. --- diff --git a/meson.build b/meson.build index 78f119b..ccee548 100644 --- a/meson.build +++ b/meson.build @@ -10,4 +10,12 @@ gio_dep = dependency('gio-2.0') inc = include_directories('src') subdir('src') -subdir('tests') \ No newline at end of file +subdir('tests') + +pkg_mod = import('pkgconfig') +pkg_mod.generate(libraries: libzakutils, + version: '0.0.1', + name: 'libzakutils', + filebase: 'libzakutils', + description: 'Utility functions.', + requires: ['glib-2.0 >= 2.36', 'gobject-2.0 >= 2.36', 'gio-2.0 >= 2.36']) \ No newline at end of file