From e3d150f9d045c2ef4fcf952daf88d9e4999c398f Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Wed, 26 May 2021 21:27:04 -0400 Subject: Groundwork for 2d collision work --- 2d/rigidbody/rigidbody_3/build.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2d/rigidbody/rigidbody_3/build.sh (limited to '2d/rigidbody/rigidbody_3/build.sh') diff --git a/2d/rigidbody/rigidbody_3/build.sh b/2d/rigidbody/rigidbody_3/build.sh new file mode 100755 index 0000000..892dddd --- /dev/null +++ b/2d/rigidbody/rigidbody_3/build.sh @@ -0,0 +1,16 @@ +filepaths="" + +for file in ../../../shared_cpp/*; do + if [ -f "$file" ]; then + if [[ "$file" == *.cpp ]]; then + filepaths+=" $file" + fi + fi +done + +if [ ! -d ./dist ]; then + mkdir ./dist +fi + +echo "$filepaths" +emcc -o dist/output.js main.cpp $filepaths -s ALLOW_MEMORY_GROWTH=1 -s USE_WEBGL2=1 -s FULL_ES3=1 -s WASM=1 -s NO_EXIT_RUNTIME=1 \ No newline at end of file -- cgit v1.2.1