try to fix various build issues with the senseglove core types module

This commit is contained in:
Mamadou Babaei
2023-05-19 18:13:54 +02:00
parent a793128736
commit 7a355c47b1
4 changed files with 13 additions and 13 deletions
@@ -47,7 +47,6 @@ public class SenseGloveCore : ModuleRules
{ {
"Core", "Core",
"Engine", "Engine",
"SenseGloveTypes",
} }
); );
@@ -59,10 +58,18 @@ public class SenseGloveCore : ModuleRules
"SenseGloveCoreImpl", "SenseGloveCoreImpl",
"SenseGloveInterop", "SenseGloveInterop",
"SenseGloveLog", "SenseGloveLog",
"SenseGloveTypes",
"SenseGloveUtils", "SenseGloveUtils",
} }
); );
PublicIncludePathModuleNames.AddRange(
new string[]
{
"SenseGloveTypes",
}
);
PrivateIncludePathModuleNames.AddRange( PrivateIncludePathModuleNames.AddRange(
new string[] new string[]
{ {
@@ -70,4 +77,4 @@ public class SenseGloveCore : ModuleRules
} }
); );
} }
} }
@@ -33,4 +33,6 @@
*/ */
#include "SGCoreTypes/SGInterpolationSetArray.h" #include "SGCoreTypes/SGInterpolationSetArray.h"
#include "SGCore/SGInterpolationSet.h"
@@ -35,11 +35,9 @@
#pragma once #pragma once
#include "SGCore/SGInterpolationSet.h"
#include "SGInterpolationSetArray.generated.h" #include "SGInterpolationSetArray.generated.h"
class FSGInterpolationSetImpl; class USGInterpolationSet;
USTRUCT(BlueprintType) USTRUCT(BlueprintType)
struct SENSEGLOVECORETYPES_API FSGInterpolationSetArray struct SENSEGLOVECORETYPES_API FSGInterpolationSetArray
@@ -57,12 +57,5 @@ public class SenseGloveCoreTypes : ModuleRules
"SenseGloveLog", "SenseGloveLog",
} }
); );
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"SenseGloveCore",
}
);
} }
} }