GoogleARCoreCameraImage.h not found

I have this line in my module’s header file:

#include <GoogleARCoreCameraImage.h>

Compilation fails saying it can’t find this file. How can I fix it?

Fixed it by adding two lines Into <module-Name>.Build.cs

PublicDependencyModuleNames.AddRange(
new string]
{
… // other modules
“AugmentedReality”,
“GoogleARCoreBase”
});