mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			576 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			576 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
spalib_headers = [
 | 
						|
  'debug.h',
 | 
						|
  'format.h',
 | 
						|
  'props.h',
 | 
						|
]
 | 
						|
 | 
						|
install_headers(spalib_headers, subdir : 'spa/lib')
 | 
						|
 | 
						|
spalib_sources = ['debug.c',
 | 
						|
                  'props.c',
 | 
						|
                  'format.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,
 | 
						|
)
 |