mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	This starts up the event loop and wayland display and shims out the basic top level rendering concepts. Also includes some changes to incorporate pango into the 1.x codebase properly.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
deps = [
 | 
						|
	cairo,
 | 
						|
	pango,
 | 
						|
	pangocairo,
 | 
						|
	wlroots
 | 
						|
]
 | 
						|
 | 
						|
if gdk_pixbuf.found()
 | 
						|
	deps += [gdk_pixbuf]
 | 
						|
endif
 | 
						|
 | 
						|
lib_sway_common = static_library(
 | 
						|
	'sway-common',
 | 
						|
	files(
 | 
						|
		'cairo.c',
 | 
						|
		'ipc-client.c',
 | 
						|
		'log.c',
 | 
						|
		'list.c',
 | 
						|
		'pango.c',
 | 
						|
		'readline.c',
 | 
						|
		'stringop.c',
 | 
						|
		'util.c'
 | 
						|
	),
 | 
						|
	dependencies: deps,
 | 
						|
	include_directories: sway_inc
 | 
						|
)
 |