readme
This commit is contained in:
parent
3e894700ea
commit
6da686c288
|
|
@ -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
|
||||
```
|
||||
Loading…
Reference in New Issue