Files
build_tools/scripts/core_common/make_common.py
2021-03-01 10:01:22 +03:00

27 lines
330 B
Python

#!/usr/bin/env python
import sys
sys.path.append('modules')
sys.path.append('..')
import config
import base
import boost
import cef
import icu
import openssl
import v8
import html2
import hunspell
def make():
boost.make()
cef.make()
icu.make()
openssl.make()
v8.make()
html2.make()
hunspell.make(False)
return