Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

nmake.exe is not found in the windows\system32 folder? how to setup nmake command in windows?

Tags:

nmake

When I type the nmake command in the Command Prompt, I am getting this error:

'nmake' is not recognized as an internal or external command operable program or batch file.

Also, I couldn't find the nmake.exe file in my system.

How to setup the nmake command on Windows?

like image 357
shinoy.m Avatar asked Feb 19 '16 14:02

shinoy.m


People also ask

How do you get nmake?

You can get nmake as well as the MSVC++ compiler by downloading Visual C++ Express. Visual C++ Express runs perfectly fine on Windows 7.

Where is nmake EXE located?

You can install toolset like “MSVC v142 - VS 2019 C++ x64/x86 build tools (v14. 24)” from VS installer, that include C compiler, then you can find nmake.exe under “C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.24.

How use nmake command-line?

NMAKE must run in a Developer Command Prompt window. A Developer Command Prompt window has the environment variables set for the tools, libraries, and include file paths required to build at the command line. For details on how to open a Developer Command Prompt window, see Use the MSVC toolset from the command line.


1 Answers

NMake is part of Microsoft's build tools for building C++ projects. You can get nmake as well as the MSVC++ compiler by downloading Visual C++ Express. Visual C++ Express which runs perfectly fine on Windows 7. It will install nmake.exe to C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin on Windows 7 without prompting for an alternate directory. As this question answered

like image 135
Steve Byrne Avatar answered Oct 19 '22 22:10

Steve Byrne