8 lines
72 B
Bash
8 lines
72 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make
|
||
|
./ixwebsocket_unittest
|