mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Add an interface that can manager a dbus connection. Make a dbus interface in the core that can create connections running in the core main loop. Keep this as support for spa plugins.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			819 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			819 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')))
 | 
						|
 | 
						|
spa_dbus_sources = ['dbus.c']
 | 
						|
 | 
						|
spa_dbus_lib = shared_library('spa-dbus',
 | 
						|
                          spa_dbus_sources,
 | 
						|
                          include_directories : [ spa_inc, spa_libinc],
 | 
						|
                          dependencies : dbus_dep,
 | 
						|
                          install : true,
 | 
						|
                          install_dir : '@0@/spa/support'.format(get_option('libdir')))
 |