关于cygwin:尽管已安装CMake并将其添加到路径中,但CLion无法检测到CMake。

CLion can't detect CMake though CMake is installed and added to the Path

这里已经有了CLion的CMAKE ERROR答案,但是我的问题有所不同。

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

enter

它显示以下错误:-

1
2
3
4
5
6
7
8
9
10
11
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并将其添加到显示这些错误的路径之后?
这些错误是什么意思?
以及如何解决这些错误?

请帮助

谢谢


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

另请参阅此问题:找不到CMAKE_MAKE_PROGRAM,它描述了您遇到的第一个错误的含义。