blob: e9918cee46a85624a0b953f45aa7f350835ba4a8 [file] [log] [blame]
project('lib', ['c'])
a = library('test-a', 'liba.c', install: true)
b = library('test-b', 'libb.c', link_with: a, install: true)
import('pkgconfig').generate(
version: '0.0',
description: 'test library',
filebase: 'test-b',
name: 'test library',
libraries: [b],
subdirs: ['.']
)