Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 949 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 949 Bytes

Mes solutions pour l'Advent of Code

Prerequisites

Ce projet a besoin de vcpkg pour trouver ses dependences. La variable d'environment VCPKG_ROOT doit est bien définie.

Comment compiler avec clang:

mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
ninja

Comment compiler GCC:

mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ ..
ninja