diff --git a/README.md b/README.md new file mode 100644 index 0000000..e7a62b4 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Advent of Code 2024 + +Advent of Code 2024 solutions in C. + +## Building + +```bash +$ mkdir build +$ cd build +$ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo .. +$ make +``` + +## Running + +```bash +$ cd build +$ ./day-01 ../day-01/input.txt +```