mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
7 lines
143 B
Bash
7 lines
143 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
cmake .. -DLWS_WITH_GCOV=1 && \
|
||
|
make clean && \
|
||
|
rm -f `find . -name "*.gcno" -o -name "*.gcda"` && \
|
||
|
make -j16 && sudo make install
|