Spider2/README.md

13 lines
430 B
Markdown
Raw Permalink Normal View History

2024-09-01 16:12:11 +02:00
# Shitty http spider in C
lol
## Build Instructions
In order to build this, you need: cmake, curl, tidy, a c compiler, as well as all of the appropriate development header packages.
```
mkdir build
cd build
cmake -S .. -B . -DCMAKE_BUILD_TYPE=Release
cmake --build .
```
After you built it, the binary should be in `./build/Spider2` relative to the repo root.
To run the tests, run `ctest` in `./build` relative to the repo root.