The Meson Build System http://mesonbuild.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
266 B

project('lib', ['c'])
a = library('test-a', 'liba.c', install: true)
install_headers(files('liba.h'))
import('pkgconfig').generate(
a,
version: '0.0',
description: 'test library',
filebase: 'test-a',
name: 'test library',
subdirs: ['.']
)