Generate pkg-config file

This commit is contained in:
Alexis Engelke
2019-06-16 09:48:18 +02:00
parent 9bdb71e6aa
commit 69691c9605

View File

@@ -69,3 +69,10 @@ fadec = declare_dependency(link_with: libfadec,
subdir('tests') subdir('tests')
install_headers('fadec.h') install_headers('fadec.h')
pkg = import('pkgconfig')
pkg.generate(libraries: libfadec,
version: '0.1',
name: 'fadec',
filebase: 'fadec',
description: 'Fast Decoder for x86-32 and x86-64')