1# Taken from https://mesonbuild.com/IndepthTutorial.html 2testexe = executable('testexe', 'footest.cpp', 3 include_directories : inc, 4 link_with : foolib) 5test('foolib test', testexe) 6''' 7testexe3 = executable('testexe2', 'footest2.cpp', 8 include_directories : inc, 9 link_with : foolib) 10test('foolib test2', testexe) 11''' 12