This breaks autoconf. The only resulting binary is the squeekboard GUI. It still needs the autotools-built eekboard client in order to do anything useful. That one needs to be built using a different branch, making this a WIP.
		
			
				
	
	
		
			17 lines
		
	
	
		
			383 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			383 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
project(
 | 
						|
    'squeekboard',
 | 
						|
    'c',
 | 
						|
    version: '1.0.9',
 | 
						|
    license: 'GPLv3',
 | 
						|
    meson_version: '>=0.43.0',
 | 
						|
    default_options: [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11' ],
 | 
						|
)
 | 
						|
 | 
						|
prefix = get_option('prefix')
 | 
						|
datadir = join_paths(prefix, get_option('datadir'))
 | 
						|
pkgdatadir = join_paths(datadir, meson.project_name())
 | 
						|
 | 
						|
subdir('data')
 | 
						|
subdir('eek')
 | 
						|
subdir('src')
 |