Files
build_tools/scripts/core_common/modules/harfbuzz.py
2022-05-31 16:20:05 +03:00

16 lines
290 B
Python
Executable File

#!/usr/bin/env python
import sys
sys.path.append('../..')
import base
import os
def make():
print("[fetch & build]: harfbuzz")
base.cmd_in_dir(base.get_script_dir() + "/../../core/Common/3dParty/harfbuzz", "./make.py")
return
if __name__ == '__main__':
# manual compile
make()