mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	libseat provides all session functionality, so there is no longer need for a session backend abstraction. The libseat device ID, seat handle and event loop handle are moved to the main wlr_session and wlr_device structs.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
libseat = dependency('libseat',
 | 
						|
	version: '>=0.2.0',
 | 
						|
	fallback: ['seatd', 'libseat'],
 | 
						|
	default_options: ['server=disabled', 'man-pages=disabled'],
 | 
						|
)
 | 
						|
wlr_files += files('session.c')
 | 
						|
wlr_deps += libseat
 |