Shitty HTTP spider in C
Go to file
Ava Pagefault 20c3cd5510 initial commit 2024-09-01 10:12:11 -04:00
include initial commit 2024-09-01 10:12:11 -04:00
src initial commit 2024-09-01 10:12:11 -04:00
tests initial commit 2024-09-01 10:12:11 -04:00
.gitignore initial commit 2024-09-01 10:12:11 -04:00
CMakeLists.txt initial commit 2024-09-01 10:12:11 -04:00
README.md initial commit 2024-09-01 10:12:11 -04:00
flake.lock initial commit 2024-09-01 10:12:11 -04:00
flake.nix initial commit 2024-09-01 10:12:11 -04:00

README.md

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.