The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
291 B

#!/usr/bin/env python3
import os
import sys
import subprocess
environ = os.environ.copy()
environ['PKG_CONFIG_LIBDIR'] = os.path.join(
os.path.dirname(os.path.realpath(__file__)), 'cross_pkgconfig')
sys.exit(
subprocess.run(['pkg-config'] + sys.argv[1:], env=environ).returncode)