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
447 B
16 lines
447 B
project('mixed dependence', 'vala', 'c') |
|
|
|
cc = meson.get_compiler('c') |
|
|
|
deps = [dependency('glib-2.0'), dependency('gobject-2.0'), |
|
# Should be ignored, see https://github.com/mesonbuild/meson/issues/1939 |
|
cc.find_library('z')] |
|
|
|
mixer = static_library('mixer', 'mixer.vala', 'mixer-glue.c', |
|
dependencies : deps) |
|
|
|
app = executable('app', 'app.vala', |
|
link_with : mixer, |
|
dependencies : deps) |
|
|
|
test('valamixeddependencetest', app)
|
|
|