mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +00:00
cb511019b0
Adding install dependencies step
7 lines
249 B
Bash
7 lines
249 B
Bash
#!/usr/bin/env bash
|
|
|
|
sudo apt-get install check ninja-build doxygen
|
|
cp contrib/examples/example_app/lwipcfg.h.ci contrib/examples/example_app/lwipcfg.h
|
|
make -C contrib/ports/unix/check
|
|
mkdir build && cd build && cmake .. -G Ninja && cmake --build .
|