Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 574 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 574 Bytes

{EPITECH} — 1st year pool C exercises (2012)

How to build & run tests

CMake 3.13+

cmake -B build -G "Ninja Multi-Config"
cmake --build build --config Release -j
cmake --build build --config Release --target test

Older CMake

mkdir build
cd build
cmake .. -G "Ninja Multi-Config"
cmake --build . --config Release -j
cmake --build . --config Release --target test

Using Clang-CL

Ensure it can be found in path and add this to the first cmake command: -DCMAKE_C_COMPILER=clang-cl.