0

我正在尝试使用 CMake 来构建 Google Test。正如 Google Test 的 README 中提到的,我发出了以下命令:

  mkdir mybuild       # Create a directory to hold the build output.
  cd mybuild
  cmake D:\gtest-1.6.0 # (in the README this was set as:cmake ${GTEST_DIR}, but since on my machine D:\gtest-1.6.0 is where I have downloaded gtest, I have used that in command prompt.

这是我得到的错误: 在此处输入图像描述

有什么帮助吗?任何帮助将不胜感激,因为我坚持下去并且无法继续前进......谢谢。附言。我的机器上安装了 Visual Studio 10。

4

1 回答 1

2

如果将 Visual c++ 编译器与 cmake 一起使用,则必须从 Visual c++ 命令提示符启动它。否则 cmake 将找不到您的编译器。

于 2013-04-03T15:17:15.287 回答