mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Move array and map to pinos Move more things to spa lib ControlCmd -> Message Make pinos log, use for plugins as well work on ringbuffer in alsa and nodes work on making registry with all objects
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			666 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			666 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
#project('spa', 'c')
 | 
						|
 | 
						|
alsa_dep = dependency('alsa')
 | 
						|
v4l2_dep = dependency('libv4l2')
 | 
						|
xv_dep = dependency('x11')
 | 
						|
sdl_dep = dependency('sdl2')
 | 
						|
avcodec_dep = dependency('libavcodec')
 | 
						|
avformat_dep = dependency('libavformat')
 | 
						|
avfilter_dep = dependency('libavfilter')
 | 
						|
libva_dep = dependency('libva')
 | 
						|
libudev_dep = dependency('libudev')
 | 
						|
threads_dep = dependency('threads')
 | 
						|
 | 
						|
cc = meson.get_compiler('c')
 | 
						|
 | 
						|
dl_lib = cc.find_library('dl', required : true)
 | 
						|
pthread_lib = cc.find_library('pthread', required : true)
 | 
						|
 | 
						|
spa_inc = include_directories('include')
 | 
						|
spa_libinc = include_directories('.')
 | 
						|
 | 
						|
subdir('include')
 | 
						|
subdir('lib')
 | 
						|
subdir('plugins')
 | 
						|
subdir('tools')
 | 
						|
subdir('tests')
 |