project('homematic-go') go = find_program('go', required : true) subdir('homematic') homematic_go = custom_target( input : [ meson.current_source_dir() / 'main.go', ], output : 'homematic-go', command : [ go, 'build', '-o', '@OUTPUT@', '@INPUT@', ], depend_files : [ homematic, ], build_by_default : true, ) run_target( 'run', command : [ homematic_go, ], ) test( 'unit-tests', go, args: ['test', './...'], workdir: meson.current_source_dir() )