1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add JavaScript eval interface

This commit is contained in:
eska
2016-04-11 23:22:14 +02:00
parent 016be49e08
commit 913361928f
6 changed files with 242 additions and 2 deletions

View File

@@ -18,7 +18,8 @@ def can_build():
def get_opts():
return [
['compress','Compress JS Executable','no']
['compress','Compress JS Executable','no'],
['javascript_eval','Enable JavaScript eval interface','yes']
]
def get_flags():
@@ -86,6 +87,10 @@ def configure(env):
env.Append(CPPFLAGS=['-s','ASM_JS=1'])
env.Append(CPPFLAGS=['-s','FULL_ES2=1'])
# env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED','-DMPC_FIXED_POINT'])
if env['javascript_eval'] == 'yes':
env.Append(CPPFLAGS=['-DJAVASCRIPT_EVAL_ENABLED'])
if (env["compress"]=="yes"):
lzma_binpath = em_path+"/third_party/lzma.js/lzma-native"
lzma_decoder = em_path+"/third_party/lzma.js/lzma-decoder.js"