mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Merge pull request #117 from ascent12/meson-options
Change meson to be more configurable
This commit is contained in:
		
						commit
						b56f15bca7
					
				
					 2 changed files with 25 additions and 22 deletions
				
			
		
							
								
								
									
										21
									
								
								meson.build
									
										
									
									
									
								
							
							
						
						
									
										21
									
								
								meson.build
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -1,16 +1,17 @@
 | 
			
		|||
project('wlroots', 'c',
 | 
			
		||||
  license: 'MIT',
 | 
			
		||||
  default_options: 'c_std=c11')
 | 
			
		||||
  default_options: [
 | 
			
		||||
    'c_std=c11',
 | 
			
		||||
    'warning_level=2',
 | 
			
		||||
    'werror=true',
 | 
			
		||||
  ])
 | 
			
		||||
 | 
			
		||||
add_project_arguments('-Wall', '-Wextra', '-Wno-unused-parameter', '-Werror', language: 'c')
 | 
			
		||||
add_project_arguments('-Wno-unused-parameter', language: 'c')
 | 
			
		||||
add_project_arguments('-DWLR_SRC_DIR="@0@"'.format(meson.source_root()), language: 'c')
 | 
			
		||||
add_project_link_arguments('-Wl,-rpath,@0@'.format(meson.build_root()), language: 'c')
 | 
			
		||||
 | 
			
		||||
wlr_inc = include_directories('include')
 | 
			
		||||
 | 
			
		||||
#add_project_arguments('-flto', language: 'c')
 | 
			
		||||
#add_project_link_arguments('-flto', language: 'c')
 | 
			
		||||
 | 
			
		||||
cc = meson.get_compiler('c')
 | 
			
		||||
 | 
			
		||||
# Clang complains about some zeroed initialiser lists (= {0}), even though they are valid
 | 
			
		||||
| 
						 | 
				
			
			@ -35,11 +36,11 @@ libcap     = dependency('libcap', required: false)
 | 
			
		|||
systemd        = dependency('libsystemd', required: false)
 | 
			
		||||
math           = cc.find_library('m', required: false)
 | 
			
		||||
 | 
			
		||||
if libcap.found()
 | 
			
		||||
if libcap.found() and get_option('enable_libcap')
 | 
			
		||||
  add_project_arguments('-DHAS_LIBCAP', language: 'c')
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
if systemd.found()
 | 
			
		||||
if systemd.found() and get_option('enable_systemd')
 | 
			
		||||
  add_project_arguments('-DHAS_SYSTEMD', language: 'c')
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -50,7 +51,7 @@ subdir('types')
 | 
			
		|||
subdir('util')
 | 
			
		||||
subdir('xcursor')
 | 
			
		||||
 | 
			
		||||
_wlr_deps = [
 | 
			
		||||
wlr_deps = [
 | 
			
		||||
  wayland_server,
 | 
			
		||||
  wayland_client,
 | 
			
		||||
  wayland_egl,
 | 
			
		||||
| 
						 | 
				
			
			@ -77,11 +78,11 @@ lib_wlr = library('wlroots', files('dummy.c'),
 | 
			
		|||
    lib_wlr_util,
 | 
			
		||||
    lib_wlr_xcursor,
 | 
			
		||||
  ],
 | 
			
		||||
  dependencies: _wlr_deps,
 | 
			
		||||
  dependencies: wlr_deps,
 | 
			
		||||
  include_directories: wlr_inc)
 | 
			
		||||
 | 
			
		||||
wlroots = declare_dependency(link_with: lib_wlr,
 | 
			
		||||
  dependencies: _wlr_deps,
 | 
			
		||||
  dependencies: wlr_deps,
 | 
			
		||||
  include_directories: wlr_inc)
 | 
			
		||||
 | 
			
		||||
subdir('examples')
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										2
									
								
								meson_options.txt
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								meson_options.txt
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,2 @@
 | 
			
		|||
option('enable_libcap', type: 'boolean', value: true, description: 'Enable support for capabilities')
 | 
			
		||||
option('enable_systemd', type: 'boolean', value: true, description: 'Enable support for logind')
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue