mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-04-07 14:06:31 +08:00
16 lines
290 B
Python
Executable File
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()
|