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.
 
 
 
 
 
 

11 lines
253 B

#!/usr/bin/env python3
import subprocess, sys, platform
# Meson does not yet support Studio cc on Solaris, only gcc or clang
if platform.system() == 'SunOS':
cc = 'gcc'
else:
cc = 'cc'
subprocess.call([cc, "-DEXTERNAL_BUILD"] + sys.argv[1:])