我正在尝试使用CMake构建Google Test。 正如Google Test的自述文件中所述, 我发出了以下命令:
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.
这是我得到的错误:
有任何帮助吗?任何帮助将非常感激,因为我坚持它,不能前进......谢谢。 PS。我在我的机器上安装了Visual Studio 10.
答案 0 :(得分:2)
如果您使用Visual c ++编译器和cmake,则必须从Visual c + +命令提示符启动它。否则cmake将找不到您的编译器。