在构建项目期间遇到错误?

时间:2016-09-06 05:28:03

标签: visual-studio visual-c++ visual-studio-2012 msbuild

我正在VS2012中构建项目并收到以下错误,我在Google上搜索过,没有找到太多类似的解决方案,请提供相同的解决方案,以下是错误代码段 -

        MOCing D:\giit\release_17\RTTBorrow\rttBorrowWindow.h
         'moc.exe' is not recognized as an internal or external command,
         operable program or batch file.
          MOCing D:\giit\release_17\RTTBorrow\rttListView.h
         'moc.exe' is not recognized as an internal or external command,
         operable program or batch file.
         MOCing D:\giit\release_17\RTTBorrow\rttpassworddialog.h
         'moc.exe' is not recognized as an internal or external command,
         operable program or batch file.
          MOCing D:\giit\release_17\RTTBorrow\rttpassworddialogimpl.h
          'moc.exe' is not recognized as an internal or external command,
          operable program or batch file.
          MOCing D:\giit\release_17\RTTBorrow\rttTextEdit.h
         'moc.exe' is not recognized as an internal or external command,
          operable program or batch file.
        C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets(172,5): error MSB6006: "cmd.exe" exited with code 9009.
Thanks !!!

1 个答案:

答案 0 :(得分:1)

因为你没有说明你正在尝试构建和谷歌搜索的项目" giit"没有给出有意义的结果,我给出了一般性建议。

moc.exe是Qt构建系统的一部分,因此您可以尝试安装它。其网站为http://qt.io

相关问题