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
391 B
11 lines
391 B
5 years ago
|
entity_lib = static_library('entity', 'entity1.c')
|
||
|
|
||
|
entity_dep = declare_dependency(link_with : [[entity_lib]],
|
||
|
include_directories : [['.']],
|
||
|
sources : 'entity2.c',
|
||
|
compile_args : ['-DUSING_ENT=1'],
|
||
|
version : '1.2.3',
|
||
|
link_args : []) # No simple way of testing linker flags :(.
|
||
|
|
||
|
assert(entity_dep.version().version_compare('==1.2.3'), 'Declare_dep has incorrect version string.')
|