cmake -B build -G "Ninja Multi-Config"
cmake --build build --config Release -j
cmake --build build --config Release --target test
mkdir build
cd build
cmake .. -G "Ninja Multi-Config"
cmake --build . --config Release -j
cmake --build . --config Release --target test
Ensure it can be found in path and add this to the first cmake command: -DCMAKE_C_COMPILER=clang-cl
.