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