Update readme for CMake

This commit is contained in:
Stefan Müller 2024-12-06 20:18:38 +01:00
parent 38bca1e549
commit e6664bc6c6
1 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@
Solver for Advent of Code 2024 puzzles. <https://adventofcode.com/2024/>
This is a single command line application for the puzzles written in [C++17](https://en.cppreference.com/w/cpp/17) with [Visual Studio 2022](https://visualstudio.microsoft.com/vs/) (v143).
This is a single command line application for the puzzles written in [C++23](https://en.cppreference.com/w/cpp/23) with CMake.
## Puzzle Input
@ -38,6 +38,10 @@ A simple [finite state machine](AdventOfCode2024/StringStateMachine.h) crawling
For this puzzle I added a class for [points in two-dimensional space](AdventOfCode2024/Point2.h), so I can use these for simplifying directional computations. With that, the algorithm looks for all `X` and `A` for part 1 and 2, respectively, and tries to find the remaining characters, starting from that `X` or `A`.
## Thanks
* [Alexander Brouwer](https://github.com/Bromvlieg) for getting the project set up with CMake.
## License
Copyright (C) 2024 Stefan Müller