CONFIG_ALL is tricky to use and was ported over to Meson from the recursive processing of Makefile variables. Meson sourcesets however have all_sources() and all_dependencies() methods that remove the need for it. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			443 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			443 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
system_ss.add(when: 'CONFIG_CXL',
 | 
						|
               if_true: files(
 | 
						|
                   'cxl-component-utils.c',
 | 
						|
                   'cxl-device-utils.c',
 | 
						|
                   'cxl-mailbox-utils.c',
 | 
						|
                   'cxl-host.c',
 | 
						|
                   'cxl-cdat.c',
 | 
						|
                   'cxl-events.c',
 | 
						|
                   'switch-mailbox-cci.c',
 | 
						|
               ),
 | 
						|
               if_false: files(
 | 
						|
                   'cxl-host-stubs.c',
 | 
						|
               ))
 |