-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile
executable file
·34 lines (32 loc) · 912 Bytes
/
compile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
COMPILER='java -jar ./tools/compiler-latest/compiler.jar' # Google Closure Compiler.
${COMPILER} \
--language_in=ECMASCRIPT6 \
--language_out=ECMASCRIPT5 \
--js_output_file ./build/xplain.min.js \
--js \
./src/xplain_core.js \
./src/utils_system.js \
./src/utils_math.js \
./src/utils_array.js \
./src/utils_string.js \
./src/math_geometry.js \
./src/math_matrix4x4.js \
./src/math_matrix4x4_dim.js \
./src/math_quaternion.js \
./src/math_quaternion_dim.js \
./src/math_vector3.js \
./src/utils_opengl.js \
./src/xmodel_type.js \
./src/xmodel_codec.js \
./src/xmodel_decoder.js \
./src/xmodel_utils_material.js \
./src/xmodel_utils_mesh.js \
./src/xmodel_utils_skin.js \
./src/xmodel_utils_parameter.js \
./src/xmodel_utils_kinematics.js \
./src/xmodel_utils_animation.js \
./src/xmodel_utils_node.js \
./src/xmodel_utils_container.js \
./src/xmodel_utils_optimize.js \
./src/xmodel_utils_wrapper.js