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.
 
 
 
 
 
 

13 lines
253 B

s = custom_target(
'subdir_target',
command : [gen, '@OUTPUT@'],
output : ['main.rs'],
)
l = custom_target(
'lib_target',
command : [gen, '@OUTPUT@', '--mode', 'lib'],
output : ['lib.rs'],
)
lib = static_library('static_lib_generated', l)