harfbuzz/src/gen-harfbuzzcc.py

26 lines
692 B
Python
Raw Normal View History

#!/usr/bin/env python3
"This tool is intended to be used from meson"
2020-05-28 12:31:15 +02:00
import shutil
import sys
from pathlib import Path
2020-06-02 16:48:35 +02:00
if len (sys.argv) < 3:
2020-07-04 12:15:15 +02:00
sys.exit (__doc__)
OUTPUT = Path (sys.argv[1])
CURRENT_SOURCE_DIR = Path (sys.argv[2])
# make sure input files are unique
sources = [Path(x) for x in sorted(set(sys.argv[3:]))]
with open (OUTPUT, "wb") as f:
f.write ("".join ('#include "{}"\n'.format (p.resolve ().relative_to (CURRENT_SOURCE_DIR)) for p in sources if p.suffix == ".cc").encode ())
# copy it also to the source tree, but only if it has changed
baseline = CURRENT_SOURCE_DIR / OUTPUT.name
if baseline.read_bytes() != OUTPUT.read_bytes():
shutil.copyfile (OUTPUT, baseline)