GitHub - chenshuo/muduo-tutorial: Tutorial of Muduo network library (original) (raw)
Examples of Muduo network library
src - source file
bazel - build with Bazel
cmake-submodule - build with CMake, checking out muduo as a git submodule
cmake - build with CMake
makefile - build with Makefile
build with bazel cd bazel bazel build -c opt :all
build with CMake with git submodule git submodule update --init mkdir build cd build cmake ../cmake-submodule make
Assuming Muduo is installed in $HOME/build/debug-install
- build with CMake mkdir build cd build cmake ../cmake make
echo binary is in ./bin/
- build with GNU make cd makefile make