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
272 B

project('lddedup', 'c')
# Chosen because its ldflags contains -Wl,--export-dynamic,
# which must be deduplicated.
gm = dependency('gmodule-2.0')
lib = static_library('bob', 'bob.c',
dependencies: gm)
executable('prog', 'prog.c',
link_with: lib,
dependencies: gm)