Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tylerjw/aoc2022-cpp

C++ solutions for AOC2022
https://github.com/tylerjw/aoc2022-cpp

Last synced: about 2 months ago
JSON representation

C++ solutions for AOC2022

Awesome Lists containing this project

README

        

# AOC 2022 in C++

## Build Instructions

Install conan 2.0
```bash
pip install conan
```

Install dependencies of this project
```bash
conan install . --output-folder=build --build=missing
```

Activate conan build enviroment
```bash
source build/conanbuild.sh
```

Build the project
```bash
cmake --build --preset conan-release
```