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.
11 lines
215 B
11 lines
215 B
3 years ago
|
project('a', 'c')
|
||
|
|
||
|
dep = dependency('sneaky')
|
||
|
|
||
|
# does not work
|
||
|
add_project_dependencies(dep, language: 'c')
|
||
|
executable('prog', 'prog.c')
|
||
|
|
||
|
# this would work instead:
|
||
|
# executable('prog', 'prog.c', dependencies: dep)
|