mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-04-07 14:06:31 +08:00
23 lines
263 B
Python
23 lines
263 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
|
|
|
|
def make():
|
|
boost.make()
|
|
cef.make()
|
|
icu.make()
|
|
openssl.make()
|
|
v8.make()
|
|
return
|