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.
31 lines
612 B
31 lines
612 B
7 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import os.path
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def main():
|
||
|
name = os.path.splitext(os.path.basename(sys.argv[1]))[0]
|
||
|
out = sys.argv[2]
|
||
|
hname = os.path.join(out, name + '.h')
|
||
|
cname = os.path.join(out, name + '.c')
|
||
|
print(os.getcwd(), hname)
|
||
|
with open(hname, 'w') as hfile:
|
||
|
hfile.write('''
|
||
|
#pragma once
|
||
|
#include "export.h"
|
||
|
int DLL_PUBLIC {name}();
|
||
|
'''.format(name=name))
|
||
|
with open(cname, 'w') as cfile:
|
||
|
cfile.write('''
|
||
|
#include "{name}.h"
|
||
|
int {name}() {{
|
||
|
return {size};
|
||
|
}}
|
||
|
'''.format(name=name, size=len(name)))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|