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.
17 lines
364 B
17 lines
364 B
8 years ago
|
#!/usr/bin/env python3
|
||
9 years ago
|
|
||
8 years ago
|
import os
|
||
9 years ago
|
|
||
|
template = '''#pragma once
|
||
|
|
||
|
#define THE_NUMBER {}
|
||
|
'''
|
||
|
|
||
8 years ago
|
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))
|