CMAKE_MAKE_PROGRAM not found

后端 未结 16 2917
无人共我
无人共我 2020-12-01 02:29

I have reached the end of my rope with CMake; it has so much potential, but I cannot seem to make it find the basic system tools (i.e. make) in order to functio

16条回答
  •  不知归路
    2020-12-01 02:58

    I’ve just solved the same problem. I had MinGW with GCC and G++ installed but not make. This command helped me:

    mingw-get.exe install mingw32-make
    

    After running it, clear CMake cache (delete the CMakeCache.txt file in the CMake's working directory) and run CMake again.

提交回复
热议问题