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
287 B
12 lines
287 B
10 years ago
|
incdirs = include_directories('include')
|
||
|
|
||
|
p1lib = static_library('proj1', 'proj1f1.c',
|
||
|
include_directories : incdirs
|
||
|
)
|
||
|
|
||
|
indirect_source = files('proj1f2.c')
|
||
|
|
||
|
proj1_dep = declare_dependency(include_directories : incdirs,
|
||
|
link_with : p1lib,
|
||
|
sources : ['proj1f3.c', indirect_source])
|