Deleted the entire `ws` library and its associated files. This likely reflects a move away from the WebSocket library, possibly signaling an alternate implementation or unused/legacy code cleanup.
10 lines
217 B
Bash
10 lines
217 B
Bash
#!/bin/bash
|
|
set -e
|
|
name=$1
|
|
name=${name%.}
|
|
name=${name%.cc}
|
|
name=${name%.exe}
|
|
echo Compiling $name.cc to $name.exe
|
|
x86_64-w64-mingw32-g++.exe -static -std=c++11 $name.cc -o $name.exe
|
|
x86_64-w64-mingw32-strip $name.exe
|