Files
build_tools/scripts/core_common/make_common.py
Oleg Korshul 03d8f54444 .
2019-11-28 18:14:21 +03:00

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