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.
19 lines
469 B
19 lines
469 B
11 years ago
|
#!/usr/bin/python3
|
||
|
|
||
|
# Mimic a binary that generates an object file (e.g. windres).
|
||
|
|
||
|
import sys, shutil, subprocess
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
if len(sys.argv) != 3:
|
||
|
print(sys.argv[0], 'input_file output_file')
|
||
|
sys.exit(1)
|
||
|
ifile = sys.argv[1]
|
||
|
ofile = sys.argv[2]
|
||
|
if shutil.which('cl'):
|
||
|
cmd = ['cl', '/nologo', '/Fo'+ofile, '/c', ifile]
|
||
|
else:
|
||
|
cmd = ['cc', '-c', ifile, '-o', ofile]
|
||
|
sys.exit(subprocess.call(cmd))
|
||
|
|