pm100
pm100

Reputation: 50180

using cmake with vs2017, cannot find cmake.exe

According to MSDN I should have cmake installed with latest version of vs2017. I have the project type Visual c++ > CMake, so I think i have selected all the goodies I need.

But I dont see cmake.exe anywhere. Is there some extra package I need to install?

Upvotes: 1

Views: 1650

Answers (1)

bruno
bruno

Reputation: 41

Ran into the same issue today. Path to cmake.exe was not added to PATH environment variable. Had to add it manually. Location for Visual Studio 2019 is:

C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin

Upvotes: 2

Related Questions