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
252 B
12 lines
252 B
5 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
5 years ago
|
import subprocess, sys, platform
|
||
5 years ago
|
|
||
5 years ago
|
# 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_HOST"] + sys.argv[1:])
|