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

This commit is contained in:
Mamadou Babaei
2023-05-19 18:15:32 +02:00
parent 00ca818a7b
commit 18d3fb0e27
4 changed files with 13 additions and 13 deletions
@@ -47,7 +47,6 @@ public class SenseGloveCore : ModuleRules
{
"Core",
"Engine",
"SenseGloveTypes",
}
);
@@ -59,10 +58,18 @@ public class SenseGloveCore : ModuleRules
"SenseGloveCoreImpl",
"SenseGloveInterop",
"SenseGloveLog",
"SenseGloveTypes",
"SenseGloveUtils",
}
);
PublicIncludePathModuleNames.AddRange(
new string[]
{
"SenseGloveTypes",
}
);
PrivateIncludePathModuleNames.AddRange(
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
#include "SGCore/SGInterpolationSet.h"
#include "SGInterpolationSetArray.generated.h"
class FSGInterpolationSetImpl;
class USGInterpolationSet;
USTRUCT(BlueprintType)
struct SENSEGLOVECORETYPES_API FSGInterpolationSetArray
@@ -57,12 +57,5 @@ public class SenseGloveCoreTypes : ModuleRules
"SenseGloveLog",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"SenseGloveCore",
}
);
}
}