Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tylerjw/aoc2022-cpp
- Owner: tylerjw
- Created: 2023-03-01T17:38:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T22:15:34.000Z (almost 2 years ago)
- Last Synced: 2023-08-01T21:14:43.595Z (over 1 year ago)
- Language: C++
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```