Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 440 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 440 Bytes

Stanford CS 144 Networking Lab

Website: https://cs144.stanford.edu

To set up the build system: cmake -S . -B build

To compile: cmake --build build

To run tests: cmake --build build --target test

To run speed benchmarks: cmake --build build --target speed

To run clang-tidy (which suggests improvements): cmake --build build --target tidy

To format code: cmake --build build --target format