# muduo-tutorial **Repository Path**: suncanfly/muduo-tutorial ## Basic Information - **Project Name**: muduo-tutorial - **Description**: 陈硕的开源库 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-25 - **Last Updated**: 2024-11-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Examples of Muduo network library 0) src - source file 1) bazel - build with Bazel 2) cmake-submodule - build with CMake, checking out muduo as a git submodule 3) cmake - build with CMake 2) makefile - build with Makefile 1) build with bazel cd bazel bazel build -c opt :all 2) 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 3) build with CMake mkdir build cd build cmake ../cmake make # echo binary is in ./bin/ 4) build with GNU make cd makefile make # echo binary is in ./