BLD: Generate basic pkgconfig

This commit is contained in:
Rohit Goswami 2024-07-22 02:12:58 +00:00 committed by Mateusz Sokół
parent cfd11eba92
commit 13bd3b2c5f
1 changed files with 10 additions and 0 deletions

View File

@ -455,3 +455,13 @@ _openblas = static_library('openblas',
_kern,
],
install: true)
pkg = import ('pkgconfig')
pkg_ver = meson.project_version()
pkg.generate(_openblas,
name: 'openblas',
filebase: 'openblas',
description: 'OpenBLAS via meson build',
version: f'@pkg_ver@_meson',
)