It's an assignment from course Network Programming. Build a simple DNS server according to RFC 1034 and 1035.
Move into the directory where CMakeLists.txt locates
cd simple_dns_serverGenerate Makefile
Notes: Make sure spdlog is available in the environment, or modify
CMakeLists.txtfor your own environment.
# make sure build files are contained within it
mkdir build && cd build
cmake ..Build executable
makeFor building spdlog, which is a lightweight logging libraray for C++.