mirror of
				https://github.com/Genymobile/scrcpy.git
				synced 2025-02-18 21:37:03 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			379 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			379 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
project('scrcpy', 'c',
 | 
						|
        version: '2.0',
 | 
						|
        meson_version: '>= 0.48',
 | 
						|
        default_options: [
 | 
						|
            'c_std=c11',
 | 
						|
            'warning_level=2',
 | 
						|
            'b_ndebug=if-release',
 | 
						|
        ])
 | 
						|
 | 
						|
if get_option('compile_app')
 | 
						|
    subdir('app')
 | 
						|
endif
 | 
						|
 | 
						|
if get_option('compile_server')
 | 
						|
    subdir('server')
 | 
						|
endif
 | 
						|
 | 
						|
run_target('run', command: ['scripts/run-scrcpy.sh'])
 |