alternative commands for windows

Hi,
what would be the alternative of these commands

$ cmake .
$ make
$ sudo make install

for
x86 Native Tools Command Prompt for VS 2019 ?

cmake .
works fine, but from the next I get the error that the command is not found.
The commands are needed to build this tool:


I am very new to Cmake, so sorry for the very basic question.
Thank you!

make is unlikely the build tool used in a VS command prompt. You can use cmake --build . (with --config %config% if you want to do a specific build configuration) to build. --target %target% would be the way to build a specific target (e.g., install).