I want a guard against including the wrong header files, by adding a module name prefix in my include paths.
Similar to:
#include "Kismet/BlueprintFunctionLibrary.h"
#include "HAL/RunnableThread.h"
The following formats is not accepted:
#include "MyPluginModuleA/MyHeader.h"
#include "MyPluginModuleA/..anydepth?../MyHeader.h"
How can I set up my modules to make this prefix possible?