Skip to content

Commit

Permalink
Generate pkg-config file
Browse files Browse the repository at this point in the history
Signed-off-by: Alfred Persson Forsberg <[email protected]>
  • Loading branch information
alfredfo committed Jul 28, 2022
1 parent 6deedb7 commit e85ff42
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions meson.build
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit e85ff42

Please sign in to comment.