fix a circular dependency build issue

This commit is contained in:
Mamadou Babaei
2023-05-19 18:04:31 +02:00
parent a78e8cade7
commit 5de114f9a4
@@ -59,7 +59,6 @@ public class SenseGloveCoreImpl : ModuleRules
new string[] new string[]
{ {
"SenseGloveBuildHacks", "SenseGloveBuildHacks",
"SenseGloveCoreTypes",
"SenseGloveInterop", "SenseGloveInterop",
"SenseGloveLog", "SenseGloveLog",
"SenseGloveTypes", "SenseGloveTypes",
@@ -67,6 +66,13 @@ public class SenseGloveCoreImpl : ModuleRules
} }
); );
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"SenseGloveCoreTypes",
}
);
AddCoreLibrary(Target); AddCoreLibrary(Target);
PublicDefinitions.Add("SENSEGLOVE_BUILDING_CORE_IMPL_MODULE"); PublicDefinitions.Add("SENSEGLOVE_BUILDING_CORE_IMPL_MODULE");