I installed CMake on windows in addition to gcc and g++ compiler I added the variables to the path but still getting the following error could you please help.
-- Building for: NMake Makefiles
CMake Error at CMakeLists.txt:6 (project):
Running
'nmake' '-?'
failed with:
The system cannot find the file specified
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!
See also "C:/Users/DEANHOS/Desktop/peer/cmake tutorial/codeAndTech/sample/CMakeFiles/CMakeOutput.log".
nmake
is not accessible on your machine. This is what the first error message about. – Ruddiecmake -G "MinGW Makefiles" .
and the first error disappeared Appreciate it – Monmouthcmake --build ..
) before configuring (cmake ..
). Any subsequeny configure commands ended up with the above error. Deleting everything in the build directory and rerunningcmake ..
fixed it! – Swam