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.
14 lines
322 B
14 lines
322 B
#!/usr/bin/env python3 |
|
|
|
import sys, os |
|
|
|
if len(sys.argv) != 3: |
|
print(sys.argv[0], '<namespace>', '<output dir>') |
|
|
|
name = sys.argv[1] |
|
odir = sys.argv[2] |
|
|
|
with open(os.path.join(odir, name + '.h'), 'w') as f: |
|
f.write('int func();\n') |
|
with open(os.path.join(odir, name + '.sh'), 'w') as f: |
|
f.write('#!/bin/bash')
|
|
|