10 lines
133 B
Bash
Raw Normal View History

2018-10-25 12:01:47 -07:00
#!/bin/sh
test -d build || {
mkdir -p build
cd build
cmake ..
}
2018-10-25 12:01:47 -07:00
(cd build ; make)
./build/ping_pong ws://localhost:5678