summaryrefslogtreecommitdiffstats
path: root/test cases/common/99 postconf/postconf.py
blob: 950c7064a9b68d5a3e86199ad79a9c3eba870312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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))