mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Use SPA_PLUGIN_DIR to get the plugin path. Install plugins in subdirectory to make it match the build tree.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
ffmpeg_sources = ['ffmpeg.c',
 | 
						|
                  'ffmpeg-dec.c',
 | 
						|
                  'ffmpeg-enc.c']
 | 
						|
 | 
						|
ffmpeglib = shared_library('spa-ffmpeg',
 | 
						|
                          ffmpeg_sources,
 | 
						|
                          include_directories : [spa_inc, spa_libinc],
 | 
						|
                          dependencies : [ avcodec_dep, avformat_dep ],
 | 
						|
                          link_with : spalib,
 | 
						|
                          install : true,
 | 
						|
                          install_dir : '@0@/spa/ffmpeg'.format(get_option('libdir')))
 |