I've got Visual Studio 2017 installed together with 14.0 platfrom tools.
The problem is: nmake is not recognised as a command. I have tried setting up the environment, by running vcvarsall in the VS2015 x64 command prompt, for example, by using the following command:
vcvarsall x86_amd64
The command above had no effect and showed the following error:
Error in script usage. The correct usage is: vcvarsall [option] or vcvarsall [option] store or vcvarsall [option] [version number] or vcvarsall [option] store [version number] where [option] is: x86 | amd64 | arm | x86_amd64 | x86_arm | amd64_x86 | amd64_arm where [version number] is either the full Windows 10 SDK version number or "8.1" to use the windows 8.1 SDK
The solution, which I've found for myself, was to use
vcvars64.batlocated inYou need to run this batch file from the VS 2015 x64 command prompt.
is the path of platform tools version 14.0
There is a seperate folder for each supported platform, in this example - it is amd64.
The Visual Studio 2015 command prompt comes installed together with platform tools version 14.0.
After you run the command the environment is set-up.