mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	meson: add gdk-pixbuf and man-pages options
This commit is contained in:
		
							parent
							
								
									08a5b304e4
								
							
						
					
					
						commit
						ba16f16e4d
					
				
					 2 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
					@ -46,7 +46,7 @@ xkbcommon      = dependency('xkbcommon')
 | 
				
			||||||
cairo          = dependency('cairo')
 | 
					cairo          = dependency('cairo')
 | 
				
			||||||
pango          = dependency('pango')
 | 
					pango          = dependency('pango')
 | 
				
			||||||
pangocairo     = dependency('pangocairo')
 | 
					pangocairo     = dependency('pangocairo')
 | 
				
			||||||
gdk_pixbuf     = dependency('gdk-pixbuf-2.0', required: false)
 | 
					gdk_pixbuf     = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf'))
 | 
				
			||||||
pixman         = dependency('pixman-1')
 | 
					pixman         = dependency('pixman-1')
 | 
				
			||||||
libevdev       = dependency('libevdev')
 | 
					libevdev       = dependency('libevdev')
 | 
				
			||||||
libinput       = dependency('libinput', version: '>=1.6.0')
 | 
					libinput       = dependency('libinput', version: '>=1.6.0')
 | 
				
			||||||
| 
						 | 
					@ -80,8 +80,7 @@ if not systemd.found() and not elogind.found()
 | 
				
			||||||
	warning('You must do this manually post-install: chmod a+s /path/to/sway')
 | 
						warning('You must do this manually post-install: chmod a+s /path/to/sway')
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
scdoc = find_program('scdoc', required: false)
 | 
					scdoc = find_program('scdoc', required: get_option('man-pages'))
 | 
				
			||||||
 | 
					 | 
				
			||||||
if scdoc.found()
 | 
					if scdoc.found()
 | 
				
			||||||
	sh = find_program('sh')
 | 
						sh = find_program('sh')
 | 
				
			||||||
	mandir = get_option('mandir')
 | 
						mandir = get_option('mandir')
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,3 +7,5 @@ option('bash-completions', type: 'boolean', value: true, description: 'Install b
 | 
				
			||||||
option('fish-completions', type: 'boolean', value: true, description: 'Install fish shell completions.')
 | 
					option('fish-completions', type: 'boolean', value: true, description: 'Install fish shell completions.')
 | 
				
			||||||
option('xwayland', type: 'feature', value: 'auto', description: 'Enable support for X11 applications')
 | 
					option('xwayland', type: 'feature', value: 'auto', description: 'Enable support for X11 applications')
 | 
				
			||||||
option('tray', type: 'feature', value: 'auto', description: 'Enable support for swaybar tray')
 | 
					option('tray', type: 'feature', value: 'auto', description: 'Enable support for swaybar tray')
 | 
				
			||||||
 | 
					option('gdk-pixbuf', type: 'feature', value: 'auto', description: 'Enable support for more image formats in swaybg')
 | 
				
			||||||
 | 
					option('man-pages', type: 'feature', value: 'auto', description: 'Generate and install man pages')
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue