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
		
	
	
	
		
			448 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			448 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
spa_support_sources = ['mapper.c',
 | 
						|
		       'logger.c',
 | 
						|
		       'loop.c',
 | 
						|
		       'plugin.c']
 | 
						|
 | 
						|
spa_support_lib = shared_library('spa-support',
 | 
						|
                          spa_support_sources,
 | 
						|
                          include_directories : [ spa_inc, spa_libinc],
 | 
						|
                          dependencies : threads_dep,
 | 
						|
                          install : true,
 | 
						|
                          install_dir : '@0@/spa/support'.format(get_option('libdir')))
 |