New to UE and UE 4.9.
Installed and tried to create my first project. The project will not build I am getting the following error.
1>------ Skipped Build: Project: UE4, Configuration: BuiltWithUnrealBuildTool Win32 ------
1>Project not selected to build for this solution configuration
2>------ Build started: Project: MyProject4, Configuration: Development_Editor x64 ------
2> Performing 5 actions (4 in parallel)
2> PCH.MyProject4.h.cpp
2>c:\program files\epic games\4.9\engine\source\runtime\core\public\Windows/WindowsPlatformProcess.h(8): fatal error C1083: Cannot open include file: 'tlhelp32.h': No such file or directory
2> -------- End Detailed Actions Stats -----------------------------------------------------------
2>ERROR : UBT error : Failed to produce item: D:\Dev\Clones\unreal_tutorials\MyProject4\Binaries\Win64\UE4Editor-MyProject4.dll
2> Total build time: 2.52 seconds
2>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.MakeFile.Targets(38,5): error MSB3073: The command ""C:\Program Files\Epic Games\4.9\Engine\Build\BatchFiles\Build.bat" MyProject4Editor Win64 Development "D:\Dev\Clones\unreal_tutorials\MyProject4\MyProject4.uproject" -rocket" exited with code -1.
I can find the file mentioned here:
c:\program files\epic games\4.9\engine\source\runtime\core\public\Windows/WindowsPlatformProcess.h(8): fatal error C1083: Cannot open include file: 'tlhelp32.h': No such file or directory
Has anyone run into this when creating a new project? It seems like something is wrong with the install.
I have VS2013 Community installed
I tried to install the windows 8.1 SDK.
I tried to uninstall and reinstall unreal. Still no luck.
Environment:
windows 10
VS2013 installed
Windows 8.1 SDK installed
Thank you in advance for any help.
Edit 9/13/2015
Current Work Around
I was hoping to get the project generation working without having to modify the includes, but this is the only way I have gotten it to work so far.
I added the following to my includes
C:\Program Files (x86)\Windows Kits*8.0*\Include\um
and
C:\Program Files (x86)\Windows Kits\8.0\Lib\Win8\um\x64\
so that I can build the project.
New issues
Now when I attempt to launch the project I get the error again for the missing tlhelp32.h file.