From 21446e6368a40961b5c53f1f8edcb9c7c55bc9dc Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Fri, 19 May 2023 18:34:46 +0200 Subject: [PATCH] fix linux aarch64 build issues on ue 5.0 --- Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs | 4 ++-- Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs index 2ba8ab57..3702200b 100644 --- a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs +++ b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs @@ -159,7 +159,7 @@ public class SenseGloveConnectImpl : ModuleRules LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64")); } -#if UE_5_1_OR_LATER +#if UE_5_0_OR_LATER else if (Target.Platform == UnrealTargetPlatform.LinuxArm64) #else else if (Target.Platform == UnrealTargetPlatform.LinuxAArch64) @@ -313,7 +313,7 @@ public class SenseGloveConnectImpl : ModuleRules LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64")); } -#if UE_5_1_OR_LATER +#if UE_5_0_OR_LATER else if (Target.Platform == UnrealTargetPlatform.LinuxArm64) #else else if (Target.Platform == UnrealTargetPlatform.LinuxAArch64) diff --git a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs index fbbd8673..80e7629f 100644 --- a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs +++ b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs @@ -158,7 +158,7 @@ public class SenseGloveCoreImpl : ModuleRules LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64")); } -#if UE_5_1_OR_LATER +#if UE_5_0_OR_LATER else if (Target.Platform == UnrealTargetPlatform.LinuxArm64) #else else if (Target.Platform == UnrealTargetPlatform.LinuxAArch64)