0
  • openTLD 主项目的构建没有错误。
  • INSTALL 项目出现此错误:
Error 1   error MSB3073: The command "setlocal
"E:\CMake 2.8\bin\cmake.exe" -DBUILD_TYPE=Release -P cmake_install.cmake
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd
:VCEnd" exited with code 1. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets 113

这是openTLD 项目( LINK )。所有其他项目均已构建且没有错误。

4

1 回答 1

0

你必须打电话

setlocal "E:\CMake 2.8\bin\cmake.exe" -DBUILD_TYPE=Release -P cmake_install.cmake 

在命令行上查看更多有用的错误消息。在您的情况下,您收到错误,因为它没有以足够的权限启动。

=>运行INSTALL build with administrative privileges

于 2016-08-23T08:46:24.163 回答