8 lines
225 B
Bash
8 lines
225 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
export ROOT_DIR=`(pwd -P)`
|
||
|
|
export EMSCRIPTEN=${ROOT_DIR}/external/emscripten/emscripten
|
||
|
|
|
||
|
|
export EM_CONFIG=${ROOT_DIR}/emscripten_toolchain/emscripten_config
|
||
|
|
export EM_CACHE=${ROOT_DIR}/emscripten_toolchain/cache
|