We copy the 'newer' variant to the canonical locations. No need to implement manual branching, we have git since decades. Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/620>
		
			
				
	
	
		
			25 lines
		
	
	
		
			882 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			882 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
option('depdatadir',
 | 
						|
       type : 'string',
 | 
						|
       value : '',
 | 
						|
       description : 'System data path. Will be searched for definitions instead of datadir when provided')
 | 
						|
 | 
						|
option('tests',
 | 
						|
       type: 'boolean', value: true,
 | 
						|
       description: 'Whether to compile unit tests')
 | 
						|
 | 
						|
option('find_orphans',
 | 
						|
       type: 'boolean', value: false,
 | 
						|
       description: 'Check if all present layout files are included in resources.')
 | 
						|
 | 
						|
option('online',
 | 
						|
       type: 'boolean', value: true,
 | 
						|
       description: 'Pull packages from the internet while building, as opposed to a local registry.')
 | 
						|
       
 | 
						|
option('reset_lock',
 | 
						|
       type: 'boolean', value: false,
 | 
						|
       description: 'Resets Cargo.lock to the one found in the source repo. Does not affect builds with online == false.')
 | 
						|
 | 
						|
option('strict',
 | 
						|
       type: 'boolean', value: true,
 | 
						|
       description: 'Turn more warnings into errors')
 |