This subprojects provides the pkg-config.exe binary on Windows required by g-ir-scanner to build introspection GIR's Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1584>
		
			
				
	
	
		
			20 lines
		
	
	
		
			555 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			555 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| project('win-pkgconfig', version : '0.29.2')
 | |
| 
 | |
| py3 = import('python3').find_python()
 | |
| 
 | |
| if host_machine.system() != 'windows'
 | |
|   error('Can only download pkgconfig for Windows, sorry')
 | |
| endif
 | |
| 
 | |
| message('Downloading pkg-config.exe binary for Windows...')
 | |
| 
 | |
| zip_hash = 'b74be141a53f193727fdcb33e9a052a38d9b79c6262326d264e502796b73dfe1'
 | |
| 
 | |
| ret = run_command(py3, files('download-binary.py'), zip_hash, check: true)
 | |
| if ret.returncode() != 0
 | |
|   message(ret.stdout())
 | |
|   error(ret.stderr())
 | |
| endif
 | |
| 
 | |
| meson.override_find_program('pkg-config', find_program('pkg-config.exe'))
 |