问题描述
错误MSB3073:uscita dal comando" setlocal
" C:\Program Files \ CMake\bin\cmake.exe" -DBUILD_TYPE = Debug -P cmake_install.cmake
if%errorlevel%neq 0 goto:cmEnd
:cmEnd
endlocal& call:cmErrorLevel%errorlevel%&转到:cmDone
:cmErrorLevel
退出/ b%1
:cmDone
如果%errorlevel%neq 0转到:VCEnd
:VCEnd" con codice 1. C:\Program Files(x86)\ MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon .targets
132 5
INSTALL
error MSB3073: uscita dal comando "setlocal
"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=Debug -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" con codice 1. C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets132 5 INSTALL
当我尝试在VTK Ide
I got this error when I try to recompile INSTALL in the VTK Ide
推荐答案
根据错误消息,导致此问题的原因只是在内部 您发布的代码。然后请确保
可以编译且没有错误,您可以运行并检查
cmd行中的代码。
According to the error message, what caused this issue is just inside the code above which you posted. Then please make sure itcould be compiled with no error, you may run and check the code incmd line.
此外,我想确认的一件事是,如果您的项目中有自定义构建,那么
Also, what I want to confirm one thing is that if you have custom build in your project?
祝你好运,
Best regards,
Fletch
这篇关于错误MSB3073的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!