harfbuzz/src/gen-harfbuzzcc.py

19 lines
477 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 os, sys, shutil
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 = sys.argv[1]
CURRENT_SOURCE_DIR = sys.argv[2]
sources = sys.argv[3:]
with open (OUTPUT, "wb") as f:
f.write ("".join ('#include "{}"\n'.format (os.path.basename (x)) for x in sources if x.endswith (".cc")).encode ())
# copy it also to src/
shutil.copyfile (OUTPUT, os.path.join (CURRENT_SOURCE_DIR, os.path.basename (OUTPUT)))