mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Make a new pod filter function and use it in the plugins to filter in enum_params. Small tweaks to the pod_builder
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			529 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			529 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
spalib_headers = [
 | 
						|
  'debug.h',
 | 
						|
  'pod.h',
 | 
						|
]
 | 
						|
 | 
						|
install_headers(spalib_headers, subdir : 'spa/lib')
 | 
						|
 | 
						|
spalib_sources = ['debug.c',
 | 
						|
                  'pod.c' ]
 | 
						|
 | 
						|
spalib = shared_library('spa-lib',
 | 
						|
                         spalib_sources,
 | 
						|
                         version : libversion,
 | 
						|
                         soversion : soversion,
 | 
						|
                         include_directories : [ spa_inc, spa_libinc ],
 | 
						|
                         install : true)
 | 
						|
 | 
						|
spalib_dep = declare_dependency(link_with : spalib,
 | 
						|
  include_directories : spa_inc,
 | 
						|
)
 |