Build all executables by default except for the known-broken ones. This also allows running qemu-iotests without manually building socket_scm_helper. Reported-by: Max Reitz <mreitz@redhat.com> Tested-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
shaders = [
 | 
						|
  ['texture-blit', 'frag'],
 | 
						|
  ['texture-blit', 'vert'],
 | 
						|
  ['texture-blit-flip', 'vert'],
 | 
						|
]
 | 
						|
 | 
						|
foreach e : shaders
 | 
						|
  output = '@0@-@1@.h'.format(e[0], e[1])
 | 
						|
  genh += custom_target(output,
 | 
						|
                output: output,
 | 
						|
                capture: true,
 | 
						|
                input: files('@0@.@1@'.format(e[0], e[1])),
 | 
						|
                command: [shaderinclude, '@INPUT0@'])
 | 
						|
endforeach
 |