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
287 B
19 lines
287 B
5 years ago
|
#!python3
|
||
|
|
||
|
import sys
|
||
|
from pathlib import Path
|
||
|
|
||
|
def main():
|
||
|
if len(sys.argv) != 2:
|
||
|
print(sys.argv)
|
||
|
return 1
|
||
|
if sys.argv[1] != 'gen.c':
|
||
|
print(sys.argv)
|
||
|
return 2
|
||
|
Path('foo').touch()
|
||
|
|
||
|
return 0
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.exit(main())
|