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.
16 lines
324 B
16 lines
324 B
project('lib', ['c']) |
|
|
|
libA_dep = dependency('test-a') |
|
|
|
b = library('test-b', 'libb.c', install: true, dependencies : libA_dep) |
|
|
|
install_headers(files('libb.h')) |
|
|
|
import('pkgconfig').generate( |
|
b, |
|
version: '0.0', |
|
description: 'test library', |
|
filebase: 'test-b', |
|
name: 'test library', |
|
subdirs: ['.'] |
|
)
|
|
|