mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 d6c9b1f003
			
		
	
	
		d6c9b1f003
		
	
	
	
	
		
			
			Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			438 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			438 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| smbios_ss = ss.source_set()
 | |
| smbios_ss.add(files('smbios.c'))
 | |
| smbios_ss.add(when: 'CONFIG_IPMI',
 | |
|               if_true: files('smbios_type_38.c'),
 | |
|               if_false: files('smbios_type_38-stub.c'))
 | |
| 
 | |
| softmmu_ss.add_all(when: 'CONFIG_SMBIOS', if_true: smbios_ss)
 | |
| softmmu_ss.add(when: 'CONFIG_SMBIOS', if_false: files('smbios-stub.c'))
 | |
| 
 | |
| softmmu_ss.add(when: 'CONFIG_ALL', if_true: files(
 | |
|   'smbios-stub.c',
 | |
|   'smbios_type_38-stub.c',
 | |
| ))
 |