Building Examples - pschatzmann/arduino-dlna GitHub Wiki

This project can be built (and debugged) on the desktop using CMake. A regular build is done with:

mkdir build
cd build
cmake ..
make

You can also build for Debugging:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make