diff --git a/meson.build b/meson.build index e885458..3ba2265 100644 --- a/meson.build +++ b/meson.build @@ -1,16 +1,14 @@ project('execinfo', 'c', version : '1.0.0') -# pkg = import('pkgconfig') +pkg = import('pkgconfig') prog_python = import('python').find_installation('python3') -dep_unwind = dependency('libunwind-generic', required: true)#, required : true) -# deps = [ dep_unwind ] +dep_unwind = dependency('libunwind', required: true) execinfo = library('execinfo', 'execinfo.c', - dependencies : [dep_unwind], + dependencies : [ dep_unwind ], install : true) install_headers('execinfo.h') -#pkg.generate(execinfo, -# description : 'Clone of the backtrace facility found in glibc implemented with libunwind') +pkg.generate(execinfo, description : 'Standalone implementation of glibc\'s execinfo using libunwind')