The Meson Build System http://mesonbuild.com/
 
 
 
 
 
 

5 lines
145 B

project('default library', 'cpp')
flib = library('ef', 'ef.cpp')
exe = executable('eftest', 'eftest.cpp', link_with : flib)
test('eftest', exe)