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
435 B
19 lines
435 B
5 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
|
import sys, os
|
||
|
|
||
|
template = '''#pragma once
|
||
|
|
||
|
#define THE_NUMBER {}
|
||
|
#define THE_ARG1 {}
|
||
|
#define THE_ARG2 {}
|
||
|
'''
|
||
|
|
||
|
input_file = os.path.join(os.environ['MESON_SOURCE_ROOT'], 'raw.dat')
|
||
|
output_file = os.path.join(os.environ['MESON_BUILD_ROOT'], 'generated.h')
|
||
|
|
||
|
with open(input_file) as f:
|
||
|
data = f.readline().strip()
|
||
|
with open(output_file, 'w') as f:
|
||
|
f.write(template.format(data, sys.argv[1], sys.argv[2]))
|