Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 - Required file "tracker.exe" is missing

I tried to compile the source code of cryengine 3 and I always get the following error message.

Error   1   error : Required file "tracker.exe" is missing. C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets  251 6   CryGame

For some reason I couldn't find any information on google.

Could it be possible that my Visual Studio installtion is somehow corrupt? I am still using the release candidate

like image 570
Maik Klein Avatar asked Nov 16 '12 18:11

Maik Klein


1 Answers

A quote from MS website about tracker.exe:

Tracker.exe is required to correctly incrementally generate resources in some circumstances, such as when building on a 64-bit OS using 32-bit MSBuild. This build requires Tracker.exe, but it could not be found. The task is looking for Tracker.exe beneath the InstallationFolder value of the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A.

Possible solutions:

  • Install the Microsoft Windows SDK v7.0A or later.
  • Manually set the above registry key to the correct location.
  • You short-circuit that lookup instead by setting the ResGenTrackerSdkPath property to the 7.1 .NET 4.0 tools location. In the build definition, under "MSbuild Arguments", you can add the following:

/p:ResGenTrackerSdkPath=":\Program Files(x86)\Microsoft SDKs\Windows\v7.1\Bin\NETFX 4.0 Tools

EDIT: your path may differ a little, but this still shows the general path to add

like image 123
Syntactic Fructose Avatar answered Sep 16 '22 13:09

Syntactic Fructose