Skip to content

Latest commit

 

History

History

2015

Advent of Code 2015

https://adventofcode.com/2015

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