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.
12 lines
247 B
12 lines
247 B
7 years ago
|
project('a', 'c', version:'1.0')
|
||
|
|
||
|
c_dep = dependency('c', version:'1', fallback: ['c', 'c_dep'])
|
||
|
|
||
|
alib = library('a', 'a.c',
|
||
|
dependencies: c_dep)
|
||
|
|
||
|
a_dep = declare_dependency(
|
||
|
link_with: alib,
|
||
|
include_directories: include_directories('.'),
|
||
|
)
|