Skip to content

Latest commit

 

History

History

2021

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Advent of Code 2021

https://adventofcode.com/2021

Language

Implemented in C++11 with CMake and GoogleTest.

Preparation

  1. Install CMake.

  2. Install a compiler (GCC, Clang, MSVC).

  3. Initialize the build system:

    cmake -B build

Building

Use cmake to build the project:

cmake --build build/

Running tests

Run test test using ctest:

cd build/
ctest