expose as little as dependencies as possible

This commit is contained in:
Mamadou Babaei
2024-03-22 21:00:26 +01:00
parent d7c5a874ef
commit de460e25e7
20 changed files with 69 additions and 155 deletions
@@ -48,21 +48,23 @@ public class SenseGloveConnectImpl : ModuleRules
bEnableExceptions = true;
bUseRTTI = true;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"SenseGloveBuildHacks",
"SenseGloveInterop",
"SenseGloveLog",
"SenseGloveTypes",
"SenseGloveUtils",
"SenseGloveTypes",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"SenseGloveInterop",
}
);