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