Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My error

I have this error appearing when trying to build a C++ project which uses QT. If anyone could please advise as this is fairly urgent for me to solve this issue. I've checked the below link but the user didn't say the solution. I'd appreciate if anyone could help me please.

http://social.msdn.microsoft.com/Forums/en-US/msbuild/thread/5b0be7be-1b6e-44c2-91ca-b5a9a55a2c41/

The warnings appearing are:

Warning 1

The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'IntDirTrailingSlashWarning' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRules, CodeAnalysisForceOutput, CodeAnalysisGenerateS.... C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets 21

and

Warning 59

The 'ToolArchitecture' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets 713

this is the file having the error: error file and this is the log file: log file

share|improve this question
Any further error pointing to codes / resources ? – Shivan Raptor Mar 13 at 6:27
I don't think so – user1460166 Mar 13 at 6:37
show the build log please. – Shivan Raptor Mar 13 at 6:47
Similar question: stackoverflow.com/questions/6773122/… – Shivan Raptor Mar 13 at 6:47
@ShivanRaptor I've uploaded the log file if you could please assist me – user1460166 Mar 13 at 6:55

closed as too localized by Shivan Raptor, Daniel Vérité, A.V, Richard Brown, Pragnani Mar 16 at 6:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

In your build log, some files are missing, hence the build action is failed. Review these errors:

"\bin\rcc.exe" -name "qtdataacquisition" -no-compress "D:\hussein\KinectQtDataAcquisition\KinectQtDataAcquisition\qtdataacquisition.qrc" -o .\GeneratedFiles\qrc_qtdataacquisition.cpp
         The system cannot find the path specified.
         Moc'ing qtdataacquisition.h...
         Uic'ing qtdataacquisition.ui...
         The system cannot find the path specified.
         Moc'ing DataCollector.h...
         The system cannot find the path specified.
         The system cannot find the path specified.
         Rcc'ing qtdataacquisition.qrc...
     1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5): error MSB6006: "cmd.exe" exited with code 3.
share|improve this answer
this path was found "D:\hussein\KinectQtDataAcquisition\KinectQtDataAcquisition\qtdataacquisition.qr‌​c", so what can I check for next? – user1460166 Mar 14 at 4:35
check permission as well, is it writable ? – Shivan Raptor Mar 14 at 5:59
I've made it full control and rebuild but still same error – user1460166 Mar 14 at 6:19
How about path : `D:\hussein\KinectQtDataAcquisition\KinectQtDataAcquisition\GeneratedFiles` ? seems it can't be written in this path. Make sure you "Clean & Re-build" – Shivan Raptor Mar 14 at 6:21
this path have a full control"r/w anything" – user1460166 Mar 14 at 6:25
show 5 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.