虽然安装了CMake并将其添加到Path,但CLion无法检测到CMake

时间:2018-01-16 07:16:56

标签: cmake cygwin clion

这里已有CMAKE ERROR with CLion的答案,但我的问题不同。

我在Windows 8 64位上安装了 CLION 2017.3.1 。我已经在我的电脑上安装了Cygwin 64位和 Cmake 3.9.6 。在 CLION 的配置窗口中,它无法检测 Cmake 。我在路径中添加了 Cmake ,但 CLION 无法检测到它。错误如下图所示

enter image description here

点击测试CMake运行完成后出现错误

它显示以下错误: -

CMake Error: CMake was unable to find a build program corresponding to "Unix 
Makefiles".  CMAKE_MAKE_PROGRAM is not set.  You probably need to select a 
different build tool.

CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage

CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage

-- Configuring incomplete, errors occurred!

Error code: 1

安装 CMake 并将其添加到显示这些错误的路径后? 这些错误是什么意思? 以及如何解决这些错误?

Plz帮助

谢谢

1 个答案:

答案 0 :(得分:1)

标题为Make的输入字段适用于make程序(处理Makefile),而不适用于cmake程序。如果您尚未安装make,请安装它。

另请参阅此问题:CMAKE_MAKE_PROGRAM not found,其中描述了您遇到的第一个错误的含义。