mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-04-07 14:06:31 +08:00
Rename modules for standard libs correctly work
This commit is contained in:
@ -13,7 +13,7 @@ import cef
|
||||
import icu
|
||||
import openssl
|
||||
import curl
|
||||
from modules import websocket
|
||||
import websocket_all
|
||||
import v8
|
||||
import html2
|
||||
import hunspell
|
||||
@ -54,5 +54,5 @@ def make():
|
||||
if config.check_option("module", "mobile"):
|
||||
if (config.check_option("platform", "android")):
|
||||
curl.make()
|
||||
websocket.make()
|
||||
websocket_all.make()
|
||||
return
|
||||
|
||||
16
scripts/core_common/modules/websocket_all.py
Normal file
16
scripts/core_common/modules/websocket_all.py
Normal file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
sys.path.append('../..')
|
||||
import config
|
||||
import base
|
||||
#import ixwebsocket
|
||||
#import socketrocket
|
||||
import socket_io
|
||||
|
||||
def make():
|
||||
#ixwebsocket.make()
|
||||
#socketrocket.make()
|
||||
socket_io.make()
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user