aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/machinefile.py
blob: 18162eff52b6df045ce6b906c909b2bcd062e9af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-License-Identifier: Apache-2.0
# Copyright 2013-2024 Contributors to the The Meson project

from . import mlog

class MachineFile:
    def __init__(self, fname):
        with open(fname, encoding='utf-8') as f:
            pass
        self.stuff = None

class MachineFileStore:
    def __init__(self, native_files, cross_files):
        self.native = [MachineFile(x) for x in native_files]
        self.cross = [MachineFile(x) for x in cross_files]