https://github.com/e4ac/aocpp
C++ header only library for solving Advent of Code
https://github.com/e4ac/aocpp
advent-of-code header-only
Last synced: 1 day ago
JSON representation
C++ header only library for solving Advent of Code
- Host: GitHub
- URL: https://github.com/e4ac/aocpp
- Owner: e4ac
- License: gpl-3.0
- Created: 2026-07-11T13:14:40.000Z (1 day ago)
- Default Branch: main
- Last Pushed: 2026-07-11T13:17:03.000Z (1 day ago)
- Last Synced: 2026-07-11T16:18:18.932Z (1 day ago)
- Topics: advent-of-code, header-only
- Language: C++
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/e4ac/aocpp/actions/workflows/cmake.yml)
[](https://opensource.org/license/gpl-3-0)
# AoCPP
C++ header only library for solving [Advent of Code](https://adventofcode.com/).
## Usage
Add below to `CMakeLists.txt`:
```cmake
include(FetchContent)
fetchcontent_declare(aocpp GIT_REPOSITORY https://github.com/e4ac/aocpp GIT_TAG main)
fetchcontent_makeavailable(aocpp)
```
## Testing
Build and test with [`cmake`](https://cmake.org/).
```shell
cmake -B bin
cmake --build bin --parallel 8
ctest --test-dir bin --parallel 8
```