diff options
-rwxr-xr-x | build-win.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/build-win.sh b/build-win.sh deleted file mode 100755 index caa1ed0..0000000 --- a/build-win.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -CC=$DIR/nacl_sdk/pepper_49/toolchain/win_x86_glibc/bin/x86_64-nacl-g++.exe - -cd $DIR - -$CC spinning_cube.c hello.cc \ - -shared -o libppapi_hello.ldd \ - -I$DIR/nacl_sdk/pepper_49/include \ - -L$DIR/nacl_sdk/pepper_49/lib/win_x86_64_host/Release \ - -lppapi_cpp \ - -lppapi \ - -lppapi_simple \ - -lpthread \ - -lm \ - -lppapi_gles2 \ - -Wall -fPIC |