2013-04-03 92 views
0

我正在嘗試使用CMake構建Google測試。 正如谷歌測試的自述文件中提到, 我已發出以下命令:使用CMake構建Google測試

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. 

,這裏是錯誤,我得到: enter image description here

任何幫助嗎?任何幫助將不勝感激,因爲我堅持它,不能前進......謝謝。 ps。我的機器上安裝了Visual Studio 10。

回答

2

如果使用cmake使用Visual C++編譯器,則必須從Visual C++命令提示符啓動它。否則,cmake將不會找到你的編譯器。

+0

嗨,是的,我安裝了Visual Studio 10。我也下載了CMake 2.6。 PS。什麼是「dev命令提示符」? –

+0

我編輯了我的答案。你會在Visual Studio應用程序文件夾中找到它。請參閱http://msdn.microsoft.com/en-us/library/ms235639%28v=vs.80%29.aspx信息 –

+0

嗨,謝謝,但即使我使用Visual Studio命令提示符(2010年),我也遇到同樣的問題, 。 :(( –