building from terminal

In project root:

cmake -S ./ -B build
cd build/Desktop-Debug
ninja
./untitled

Or

cmake -S ./ -B build
cmake --build ./build/Desktop-Debug --target all
./build/Desktop-Debug/untitled

Comments