Error C1083 #include "Networking.h" no such file

Hi,

Hopefully this is just something small I’m missing. Am trying to compile a project that was working in an old version of the engine (convert kept failing despite it compiling fine in VS2013)

I’m getting the following error:
error C1083: Cannot open include file: ‘Networking.h’: No such file or directory

This is included in one of my .h files dealing with TCP networking.

This is all off a fresh install from git of 4.6.1
Searching my solution does indeed find it in the engine. (see pic below)

Does anyone know the solution???

thanks

26003-networking_h.png

Ah, solved this pretty easy. Forgot to reinclude the modules in the new project’s .Build.cs file.

gah!

PublicDependencyModuleNames.AddRange(new string[] { “Core”, “CoreUObject”, “Engine”, “InputCore”, “Sockets”, “Networking” });