C++ alphabetical build order - c++

Here's a snippet from my build output in Visual Studio 2010:
1>------ Build started: Project: Engine, Configuration: Release_PG
Win32 ------ 1>icl : warning #10187: PGOPTI instrumentation disables
multifile optimizations 1>icl : warning #10188: PGOPTI instrumentation
disables IP optimizations
1> !BasketNovel.cpp 1> Compiling
precompiled.h - this should happen just once per project. 1> 1>
Compiling BasketNovel.h. 1>
1> Camera.cpp 1> Compiling
precompiled.h - this should happen just once per project. 1> 1>
Compiling BasketNovel.h. 1>
1> Console.cpp 1> Compiling
precompiled.h - this should happen just once per project. 1> 1>
Compiling BasketNovel.h. 1>
1> Entity.cpp 1> Compiling
precompiled.h - this should happen just once per project. 1> 1>
Compiling BasketNovel.h. 1>
1> Font.cpp
From what I see, the compiler's building my .cpp files in alphabetical order. I'm not really familiar with build concepts. Is this a normal behaviour?
Note: I am using the Intel C++ compiler.

The order of compilation is not really important. The important step that builds your end-product (executable, library, etc) is the linking step, where the pieces from the compilation step will be linked together.

Related

"QtRunWork" task returned false but did not log an error. (Unknown compiler flavor)

Im working on a Qt project. Everything has been working perfectly untill I opened application this morning. I got error: "QtRunWork" task returned false but did not log an error. Im using VS2019 with QtExtension.
This is output:
1>Moc'ing ..\src\mainwindow.h...
1>Moc'ing ..\src\settingsdialog.h...
1> moc: Unknown compiler flavor 'msvc;msvc'; valid values are: msvc, unix.
1> Usage: C:/Qt/5.15.1/msvc2019_64/bin/moc [options] [header-file] [#option-file] [MOC generated json file]
1> Qt Meta Object Compiler version 67 (Qt 5.15.1)
1> Options:
1> -?, -h, --help Displays help on commandline options.
1> --help-all Displays help including Qt specific
1> options.
1> -v, --version Displays version information.
1> -o <file> Write output to file rather than stdout.
1> -I <dir> Add dir to the include path for header
1> files.
1> -F <framework> Add Mac framework to the include path for
1> header files.
1> -E Preprocess only; do not generate meta
1> object code.
1> -D <macro[=def]> Define macro, with optional definition.
1> -U <macro> Undefine macro.
1> -M <key=value> Add key/value pair to plugin meta data
1> --compiler-flavor <flavor> Set the compiler flavor: either "msvc" or
1> "unix".
1> -i Do not generate an #include statement.
1> -p <path> Path prefix for included file.
1> -f <file> Force #include <file> (overwrite default).
1> -b <file> Prepend #include <file> (preserve default
1> include).
1> --include <file> Parse <file> as an #include before the main
1> source(s).
1> -n <which> Do not display notes (-nn) or warnings
1> (-nw). Compatibility option.
1> --no-notes Do not display notes.
1> --no-warnings Do not display warnings (implies
1> --no-notes).
1> --ignore-option-clashes Ignore all options that conflict with
1> compilers, like -pthread conflicting with
1> moc's -p option.
1> --output-json In addition to generating C++ code, create
1> a machine-readable JSON file in a file that
1> matches the output file and an extra .json
1> extension.
1> --collect-json Instead of processing C++ code, collect
1> previously generated JSON output into a
1> single file.
1> --output-dep-file Output a Make-style dep file for build
1> system consumption.
1> --dep-file-path <file> Path where to write the dep file.
1> --dep-file-rule-name <rule name> The rule name (first line) of the dep file.
1> Arguments:
1> [header-file] Header file to read from, otherwise stdin.
1> [#option-file] Read additional options from option-file.
1> [MOC generated json file] MOC generated json output
1>Moc'ing ..\src\deviceManager.h...
1>Moc'ing ..\src\treemodel.h...
1>C:\Users\user\AppData\Local\QtMsBuild\qt_globals.targets(268,5): error MSB4181: The "QtRunWork" task returned false but did not log an error.
1>Done building project "project.vcxproj" -- FAILED.
I've tried changing compiler flavor but have not managed to do it. I tried changing it in Qt Project Settings, but it did not do anything. Thank you for your time.
Edit: Out of about 20 .h I've tracked the one that gives this error when trying to compile in VS2019 using Qt Extension. Have no idea how to fix this error.
I had the same issue.
Accidentally I had a normal int declared under my public slots:. Moving it into normal public: worked for me and resolved the issue.
Hopefully this will work for you as well.
I uninstalled the Qt VS tool from Visual Studio and install the previous version of Qt VS tool.
You can find it here: https://download.qt.io/official_releases/vsaddin/2.5.2/
That works for me. Maybe a problem with the new version.
Edit: Don't forget to disable auto-update.
Helped to overload the Q_OBJECT macro
It was
class CXXX: public CTTT
{
Q_OBJECT
Has become
class CXXX: public CTTT
{
//Q_OBJECT

MSB6004 The specified task executable location "\rc.exe" is invalid

I am attempting to build USBView, one of the Windows driver samples. I downloaded that from Github yesterday.
The problem is that Visual Studio attempts to find the resource compiler at the root, \rc.exe. That directory, \, obviously does not exist, so specifying the real location and placing that in the path has no bearing, x86 or x64. Visual Studio needs to find rc.exe not \rc.exe just I do not know from where VS pulled \.
I even went so far as to add the directory to my system PATH variable (and rebooted):
I did see this posting on SO, which suggested adding Microsoft.Net.Compilers to the project using NuGet Package Manager. That suggestion failed.
For whatever it is worth, here is the VS screenshot:
The diagnostic output from the build is less then helpful.
1>Target "BeforeResourceCompile" in file "C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets":
1>Done building target "BeforeResourceCompile" in project "usbview.vcxproj".
1>Target "MakeDirsForResourceCompile" in file "C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets":
1> Added Item(s): RcDirsToMake=C:\Users\Sarah\Downloads\Projects\Windows-driver-samples-master\usb\usbview\Debug
1> Task "MakeDir"
1> Task Parameter:Directories=C:\Users\Sarah\Downloads\Projects\Windows-driver-samples-master\usb\usbview\Debug
1> Done executing task "MakeDir".
1> Removed Item(s): RcDirsToMake=C:\Users\Sarah\Downloads\Projects\Windows-driver-samples-master\usb\usbview\Debug
1>Done building target "MakeDirsForResourceCompile" in project "usbview.vcxproj".
1>Target "_SelectedFiles" skipped. Previously built successfully.
1>Target "SelectCustomBuild" skipped. Previously built successfully.
1>Target "SelectResourceCompile" in file "C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets":
1>Done building target "SelectResourceCompile" in project "usbview.vcxproj".
1>Target "ResourceCompile" in file "C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets":
1> Using "RC" task from assembly "C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.Build.CppTasks.Common.dll".
1> Task "RC"
1> Task Parameter:Source=uvcview.rc
1> Task Parameter:
1> AdditionalIncludeDirectories=
1> Debug\
1> C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.16.27023\atlmfc\include
1> Task Parameter:Culture=0x0409
1> Task Parameter:
1> PreprocessorDefinitions=
1> _X86_=1
1> i386=1
1> STD_CALL
1> WIN32_LEAN_AND_MEAN=1
1> _WIN32_WINNT=0x0A00
1> WINVER=0x0A00
1> WINNT=1
1> NTDDI_VERSION=0x0A000004
1> DBG=1
1> SMP_ID=\"{54E86405-9C3D-4F0F-B65C-AB86DE455DD7}\"
1> Task Parameter:ResourceOutputFileName=Debug\uvcview.res
1> Task Parameter:SuppressStartupBanner=True
1> Task Parameter:TrackerLogDirectory=Debug\usbview.tlog\
1> Task Parameter:MinimalRebuildFromTracking=True
1> Task Parameter:ToolArchitecture=Native32Bit
1> Task Parameter:ToolPath=\
1> Task Parameter:TrackFileAccess=True
1> All source files are not up-to-date: missing command TLog "C:\Users\Sarah\Downloads\DevExpress\Projects\Windows-driver-samples-master\usb\usbview\Debug\usbview.tlog\rc.command.1.tlog".
1> C:\Program Files (x86)\Microsoft\Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(1498,5): error MSB6004: The specified task executable location "\rc.exe" is invalid.
1> Done executing task "RC" -- FAILED.
1>Done building target "ResourceCompile" in project "usbview.vcxproj" -- FAILED.
1>
1>Done building project "usbview.vcxproj" -- FAILED.
Microsoft seems to update Visual Studio on a daily basis, if not more frequently, however here is the version at the moment that I am typing this sentence. I have Windows 10 Pro x64, which also is not as bad with respect to perpetual updates.
Win32 does equal the x86 variant, but I did try both. As I mentioned, the problem really does appear to be the \.
I tried all permutations of the above.
Thoughts?
Per details on this MS Developer Community post link, if the WDK version doesn't match the SDK version then you can get this error.
In my case I had to downgrade the SDK version.

"cmd.exe" exited with code 3 in Visual Studio 2017 when building a C++ app with a lot of "The system cannot find the path specified." int the output

I am building my first C++ project, that I tried to debug, because of an issue. The project has not been build for the past 4/5 years, but the instructions were to run a bat file, which ran a "qmake -t vclib" for all directories in the project. This created a .vcproj file. Opening the file said
"These projects are either not supported or need project behaviour
impacting to open this version of Visual Studio"
error message.
picture of the error
After this, I pressed "OK" which created a .vcxproj file in the directory where the .vcproj was created. I also got this message second error message. From here I opened the .vcxproj file which should be the upgraded version of the project and I get again the second error. When I hit Build I get these errors:
enter image description here
and in the Output:
1>------ Up-To-Date check: Project: ccCore, Configuration: Debug Win32 ------
1>Project is not up-to-date: last build was unsuccessful.
1>------ Build started: Project: ccCore, Configuration: Debug Win32 ------
1>Build started 18/06/2018 10:46:52.
1>Building with tools version "15.0".
1>Target _CheckForInvalidConfigurationAndPlatform:
1> Task "Error" skipped, due to false condition; ( '$(_InvalidConfigurationError)' == 'true' ) was evaluated as ( '' == 'true' ).
1> Task "Warning" skipped, due to false condition; ( '$(_InvalidConfigurationWarning)' == 'true' ) was evaluated as ( '' == 'true' ).
1> Using "Message" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1> Task "Message"
1> Configuration=Debug
1> Done executing task "Message".
1> Task "Message"
1> Platform=Win32
1> Done executing task "Message".
1> Task "Error" skipped, due to false condition; ('$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')) was evaluated as ('.\' != '' and !HasTrailingSlash('.\')).
1> Task "Error" skipped, due to false condition; ('$(BaseIntermediateOutputPath)' != '' and !HasTrailingSlash('$(BaseIntermediateOutputPath)')) was evaluated as ('obj\' != '' and !HasTrailingSlash('obj\')).
1> Task "Error" skipped, due to false condition; ('$(IntermediateOutputPath)' != '' and !HasTrailingSlash('$(IntermediateOutputPath)')) was evaluated as ('_obj\' != '' and !HasTrailingSlash('_obj\')).
1>Target "_CheckForInvalidConfigurationAndPlatform" skipped. Previously built successfully.
1>Target SetTelemetryEnvironmentVariables:
1> Using "SetEnv" task from assembly "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.Build.CppTasks.Common.dll".
1> Task "SetEnv"
1> VSTEL_SolutionSessionID={22C99F8C-EC4B-4478-B4C6-9F995893CCFD}
1> Done executing task "SetEnv".
1> Task "SetEnv"
1> VSTEL_CurrentSolutionBuildID=470085203
1> Done executing task "SetEnv".
1> Task "SetEnv"
1> VSTEL_ProjectID={0171C2BC-3F1A-43E1-B151-47FFAC18B480}
1> Done executing task "SetEnv".
1>Target _PrepareForBuild:
1> Task "CreateItem" skipped, due to false condition; ('%(CustomBuild.IncludeFileToTool)'!='') was evaluated as (''!='').
1>Target _PrepareForReferenceResolution:
1> Task "Message" skipped, due to false condition; ('$(_REFERENCE_DEBUG)'=='true') was evaluated as (''=='true').
1>Target "ComputeCrtSDKReference" skipped, due to false condition; ('#(ClCompile)'!='' and '$(WindowsAppContainer)'=='true' and '$(UseCrtSDKReference)' != 'false') was evaluated as ...
1> Generating precompiled header source file '..\..\falcon_precomp.h.cpp'
...
1> MOC ..\include\ccFE\AppService.h
1> The system cannot find the path specified.
1> MOC ..\include\ccFE\PluginWidgetWebPage.h
1> The system cannot find the path specified.
1> MOC ..\include\ccFE\URLHandler.h
1> The system cannot find the path specified.
1> MOC ..\include\ccFE\YenkaWebPage.h
1> The system cannot find the path specified.
1> MOC ..\include\ccFE\YenkaWidget.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\AutoLayoutBaseSet.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\ComputedPropertyCallback.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\ContentsTreeStore.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\DocumentService.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\EventRegistry.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\Formatter.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\LiveQuerySet.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\NodeFilter.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\OutputTransform.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\OutputTransformManager.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\PartAssociationHelper.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\PartsTreeStore.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\PhononMediaPlayer.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\PixelDistanceConverter.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\ReplacementSet.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\SetValueCommand.h
1> The system cannot find the path specified.
1> MOC ..\include\ccModel\TreeStore.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\AccurateTimer.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\FeatureService.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\HttpFileHandler.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\JavaScriptBridge.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\SettingsService.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\Signaller.h
1> The system cannot find the path specified.
1> MOC ..\include\cc\WeakPointer.h
1> The system cannot find the path specified.
1> MOC collision\CollisionSpaceImpl.h
1> The system cannot find the path specified.
1> MOC commandManager\commandManager.h
1> The system cannot find the path specified.
1> MOC licence\LicenceDownloader.h
1> The system cannot find the path specified.
1> MOC licence\licenceService.h
1> The system cannot find the path specified.
1> MOC model\action_impl.h
1> The system cannot find the path specified.
1> MOC model\borderLayout.h
1> The system cannot find the path specified.
1> MOC model\camera\cameraAnimations\CameraAnimation.h
1> The system cannot find the path specified.
1> MOC model\canRotate3dCallback.h
1> The system cannot find the path specified.
1> MOC model\control_impl.h
1> The system cannot find the path specified.
1> MOC model\document_impl.h
1> The system cannot find the path specified.
1> MOC model\engineRegistry.h
1> The system cannot find the path specified.
1> MOC model\junction_impl.h
1> The system cannot find the path specified.
1> MOC model\linkedProperties.h
1> The system cannot find the path specified.
1> MOC model\link_impl.h
1> The system cannot find the path specified.
1> MOC model\LiveNodeWatcher.h
1> The system cannot find the path specified.
1> MOC model\LivePropertyWatcher.h
1> The system cannot find the path specified.
1> MOC model\Marquee.h
1> The system cannot find the path specified.
1> MOC model\model_impl.h
1> The system cannot find the path specified.
1> MOC model\node_impl.h
1> The system cannot find the path specified.
1> MOC model\pad_impl.h
1> The system cannot find the path specified.
1> MOC model\PartLockingHandler.h
1> The system cannot find the path specified.
1> MOC model\part_impl.h
1> The system cannot find the path specified.
1> MOC model\popup_impl.h
1> The system cannot find the path specified.
1> MOC model\propertyScaleCallback.h
1> The system cannot find the path specified.
1> MOC model\property_impl.h
1> The system cannot find the path specified.
1> MOC model\reflection_impl.h
1> The system cannot find the path specified.
1> MOC model\scene_impl.h
1> The system cannot find the path specified.
1> MOC model\spaceActionProcessor.h
1> The system cannot find the path specified.
1> MOC model\spaceOrient3Callback.h
1> The system cannot find the path specified.
1> MOC model\spacePos3Callback.h
1> The system cannot find the path specified.
1> MOC model\spacePosOrientCallback.h
1> The system cannot find the path specified.
1> MOC model\space_impl.h
1> The system cannot find the path specified.
1> MOC model\xyPosCallback.h
1> The system cannot find the path specified.
1> MOC model\xyzPosCallback.h
1> The system cannot find the path specified.
1> MOC package\packageManager.h
1> The system cannot find the path specified.
1> MOC package\SubjectManager.h
1> The system cannot find the path specified.
1> MOC units\numericalFormatter_impl.h
1> The system cannot find the path specified.
1> MOC util\AuthenticationDialog.h
1> The system cannot find the path specified.
1> MOC util\characterMapDialog.h
1> The system cannot find the path specified.
1> MOC util\HttpFileDownloader.h
1> The system cannot find the path specified.
1> MOC util\LocaleService.h
1> The system cannot find the path specified.
1> MOC util\NetworkProxy.h
1> The system cannot find the path specified.
1> MOC util\nodePropertyWatcher.h
1> The system cannot find the path specified.
1> MOC util\statGraph.h
1> The system cannot find the path specified.
1> MOC validators\baseValidator.h
1> The system cannot find the path specified.
1> MOC util\crashHandler.cpp
1> The system cannot find the path specified.
1> MOC ccFoundation\FeatureService.cpp
1> The system cannot find the path specified.
1> MOC util\statistic.cpp
1> The system cannot find the path specified.
1> MOC model\transaction.cpp
1> The system cannot find the path specified.
1> C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(171,5): error MSB6006: "cmd.exe" exited with code 3.
1> Done executing task "CustomBuild" -- FAILED.
1>Done building target "CustomBuild" in project "ccCore.vcxproj" -- FAILED.
1>
1>Done building project "ccCore.vcxproj" -- FAILED.
1>
1>Build FAILED.
1>
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(171,5): warning MSB8017: A circular dependency has been detected while executing custom build commands for item "_moc\crashHandler.moc". This may cause incremental build to work incorrectly.
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(171,5): warning MSB8017: A circular dependency has been detected while executing custom build commands for item "_moc\FeatureService.moc". This may cause incremental build to work incorrectly.
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(171,5): warning MSB8017: A circular dependency has been detected while executing custom build commands for item "_moc\statistic.moc". This may cause incremental build to work incorrectly.
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(171,5): warning MSB8017: A circular dependency has been detected while executing custom build commands for item "_moc\transaction.moc". This may cause incremental build to work incorrectly.
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(171,5): error MSB6006: "cmd.exe" exited with code 3.
1> 4 Warning(s)
1> 1 Error(s)
1>
1>Time Elapsed 00:00:00.31
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I can't put the full log due to character limit in the body, I am sorry. I read that I need to figure out which build step is causing the error, but I have no idea how to this. Also, why does it say "1> The system cannot find the path specified." I can find all of the files and open them, why do they fail to open when I build the project. Many thanks, please let me know if I can post any other information if you can help me.

Visual Studio 2017 - PreBuild event command line (build another project)

I have a solution with multiple projects.
When I build project 'Foo', I need it to build also project 'SimplePluginFramework' before Foo.
It also needs to build 'SimplePluginFramework' in Release mode, even if Foo is built in debug mode.
I tried adding this to Foo's Pre-build event command line but it's existing with code 9009 and Bar doesn't get built...
$(MSBuildBinPath)\MSBuild.exe "L:\SL1 - Current System\Core\SL Agent\SLV1\Agent\SimplePluginFramework\SimplePluginFramework.csproj" /t:build /p:Configuration=Release
How can I make the build of one project trigger the build of a different project before the build?
I've tried adding a reference to that project but it still doesn't build it.
Error:
1>Target "PreBuildEvent" in file "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets" from project "L:\SL1-(SentiLAN)-SentiLAN v1 - Current System\SentilanCore\SentiLAN Agent\SentilanV1\AgentServiceTpl\SentilanService\SentilanService.csproj" (target "CoreBuild" depends on it):
1>Using "Exec" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Exec"
1> "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe" "L:\SL1 - Current System\Core\SL Agent\SLV1\Agent\SimplePluginFramework\SimplePluginFramework.csproj" /t:build /p:Configuration=release
1> Microsoft (R) Build Engine version 15.3.409.57025 for .NET Framework
1> Copyright (C) Microsoft Corporation. All rights reserved.
1>
1> Build started 15/11/2017 09:47:32.
1> Project "L:\SL1 - Current System\Core\SL Agent\SLV1\Agent\SimplePluginFramework\SimplePluginFramework.csproj" on node 1 (build target(s)).
1> GenerateTargetFrameworkMonikerAttribute:
1> Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
1> CoreCompile:
1> Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
1> _CopyAppConfigFile:
1> Skipping target "_CopyAppConfigFile" because all output files are up-to-date with respect to the input files.
1> CopyFilesToOutputDirectory:
1> SimplePluginFramework -> L:\SL1 - Current System\Core\SL Agent\SLV1\Agent\SimplePluginFramework\lib\net35\SimplePluginFramework.dll
1> Done Building Project "L:\SL1 - Current System\Core\SL Agent\SLV1\Agent\SimplePluginFramework\SimplePluginFramework.csproj" (build target(s)).
1>
1> Build succeeded.
1> 0 Warning(s)
1> 0 Error(s)
1>
1> Time Elapsed 00:00:00.22
Project Dependencies:
Use Project | Project Dependencies to define that Foo depends on SimplePluginFramework.
Use solution configuration (right click on solution and select properties) to define that in solution level Debug configuration Foo's debug build is used but SimplePluginFramework's release build is used.

build successful but no exe file - Install Magick on Visual studio 2010 - MFC

I want to use ImageMagick in a MFC program. I have downloaded the ImageMagick and followed the instruction to install it on my system. However I encountered a problem at the first step. I opened and converted the configure.sln under visual studio 2010. I received an error when I pressed the play button to run the program; stating that “unable to start the program configure.exe… the system cannot find the specific file.” I do appreciate if you provide me the instructions to install it under visual 2010.
I went to VisualMagick\configure folder and opened the configure.sln. I also sat the build configuration to Release. However I am still receiving the same error.
I do appreciate if someone suggest me what to do ?
Many Thanks,
Shervin Zargham
1>------ Rebuild All started: Project: configure, Configuration: Release Win32 ------
1>Build started 5/5/2013 11:18:19 PM.
1>_PrepareForClean:
1> Deleting file ".\Release\configure\configure.lastbuildstate".
1>InitializeBuildStatus:
1> Creating ".\Release\configure\configure.unsuccessfulbuild" because "AlwaysCreate"
was specified.
1>ClCompile:
1> stdafx.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> WaitDlg.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> configure.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> configure_wizard.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> finished_page.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> system_page.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> target_page.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> welcome_page.cpp
1> _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
1> Generating Code...
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5):
warning MSB8012: TargetPath(D:\Shervin_Zargham\Industrial Projects\LED
Display\ImageMagick-6.8.5-4\ImageMagick-6.8.5\VisualMagick\configure\.\Release
\configure\configure.exe) does not match the Linker's OutputFile property value
(D:\Shervin_Zargham\Industrial Projects\LED Display\ImageMagick-6.8.5-4\ImageMagick
6.8.5\VisualMagick\configure\configure.exe). This may cause your project to build
incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and
$(TargetExt) property values match the value specified in %(Link.OutputFile).
1>Link:
1> configure.vcxproj -> D:\Shervin_Zargham\Industrial Projects\LED Display\ImageMagick-
6.8.5-4\ImageMagick-6.8.5\VisualMagick\configure\.\Release\configure\configure.exe
1>FinalizeBuildStatus:
1> Deleting file ".\Release\configure\configure.unsuccessfulbuild".
1> Touching ".\Release\configure\configure.lastbuildstate".
1>
1>Build succeeded.
1>
1>Time Elapsed 00:00:22.43
========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========