13 lines
430 B
Markdown
13 lines
430 B
Markdown
|
# 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.
|