From b467c679de55f28375d99418428c6a311ea4f14f Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Wed, 15 May 2024 01:57:39 +0200 Subject: [PATCH] fix: asking CppCompileEnvironment for a single Architecture, but it has multiple Architectures (arm64, x64) --- README.md | 14 +- .../SenseGloveConnectImpl.Build.cs | 196 +++++++----------- .../SenseGloveCoreImpl.Build.cs | 98 ++++----- .../lib/android/r25b/arm64/debug/libserial.a | 4 +- .../android/r25b/arm64/debug/libsgconnect.a | 4 +- .../lib/android/r25b/arm64/debug/libsgcore.a | 4 +- .../android/r25b/arm64/release/libserial.a | 4 +- .../android/r25b/arm64/release/libsgcore.a | 2 +- .../lib/android/r25b/armv7/debug/libserial.a | 3 - .../android/r25b/armv7/debug/libsgconnect.a | 3 - .../lib/android/r25b/armv7/debug/libsgcore.a | 3 - .../android/r25b/armv7/release/libserial.a | 3 - .../android/r25b/armv7/release/libsgconnect.a | 3 - .../android/r25b/armv7/release/libsgcore.a | 3 - .../lib/android/r25b/x64/debug/libserial.a | 4 +- .../lib/android/r25b/x64/debug/libsgconnect.a | 4 +- .../lib/android/r25b/x64/debug/libsgcore.a | 4 +- .../lib/android/r25b/x64/release/libserial.a | 4 +- .../lib/android/r25b/x64/release/libsgcore.a | 2 +- .../lib/android/r25b/x86/debug/libserial.a | 3 - .../lib/android/r25b/x86/debug/libsgconnect.a | 3 - .../lib/android/r25b/x86/debug/libsgcore.a | 3 - .../lib/android/r25b/x86/release/libserial.a | 3 - .../android/r25b/x86/release/libsgconnect.a | 3 - .../lib/android/r25b/x86/release/libsgcore.a | 3 - .../lib/linux/v21/aarch64/debug/libserial.a | 4 +- .../linux/v21/aarch64/debug/libsgconnect.a | 4 +- .../lib/linux/v21/aarch64/debug/libsgcore.a | 4 +- .../lib/linux/v21/aarch64/release/libserial.a | 4 +- .../linux/v21/aarch64/release/libsgconnect.a | 4 +- .../lib/linux/v21/aarch64/release/libsgcore.a | 4 +- .../lib/linux/v21/x86-64/debug/libserial.a | 4 +- .../lib/linux/v21/x86-64/debug/libsgconnect.a | 4 +- .../lib/linux/v21/x86-64/debug/libsgcore.a | 4 +- .../lib/linux/v21/x86-64/release/libserial.a | 4 +- .../linux/v21/x86-64/release/libsgconnect.a | 4 +- .../lib/linux/v21/x86-64/release/libsgcore.a | 4 +- .../lib/linux/v22/aarch64/debug/libserial.a | 4 +- .../linux/v22/aarch64/debug/libsgconnect.a | 4 +- .../lib/linux/v22/aarch64/debug/libsgcore.a | 4 +- .../lib/linux/v22/aarch64/release/libserial.a | 4 +- .../linux/v22/aarch64/release/libsgconnect.a | 4 +- .../lib/linux/v22/aarch64/release/libsgcore.a | 4 +- .../lib/linux/v22/x86-64/debug/libserial.a | 4 +- .../lib/linux/v22/x86-64/debug/libsgconnect.a | 4 +- .../lib/linux/v22/x86-64/debug/libsgcore.a | 4 +- .../lib/linux/v22/x86-64/release/libserial.a | 4 +- .../linux/v22/x86-64/release/libsgconnect.a | 4 +- .../lib/linux/v22/x86-64/release/libsgcore.a | 4 +- .../lib/win64/msvc142/debug/serial.lib | 2 +- .../lib/win64/msvc142/debug/sgconnect.lib | 2 +- .../lib/win64/msvc142/debug/sgcore.lib | 2 +- .../lib/win64/msvc142/release/serial.lib | 2 +- .../lib/win64/msvc142/release/sgconnect.lib | 2 +- .../lib/win64/msvc142/release/sgcore.lib | 2 +- .../lib/win64/msvc143/debug/serial.lib | 2 +- .../lib/win64/msvc143/debug/sgconnect.lib | 2 +- .../lib/win64/msvc143/debug/sgcore.lib | 2 +- .../lib/win64/msvc143/release/serial.lib | 2 +- .../lib/win64/msvc143/release/sgconnect.lib | 2 +- .../lib/win64/msvc143/release/sgcore.lib | 2 +- 61 files changed, 187 insertions(+), 313 deletions(-) delete mode 100644 Source/ThirdParty/lib/android/r25b/armv7/debug/libserial.a delete mode 100644 Source/ThirdParty/lib/android/r25b/armv7/debug/libsgconnect.a delete mode 100644 Source/ThirdParty/lib/android/r25b/armv7/debug/libsgcore.a delete mode 100644 Source/ThirdParty/lib/android/r25b/armv7/release/libserial.a delete mode 100644 Source/ThirdParty/lib/android/r25b/armv7/release/libsgconnect.a delete mode 100644 Source/ThirdParty/lib/android/r25b/armv7/release/libsgcore.a delete mode 100644 Source/ThirdParty/lib/android/r25b/x86/debug/libserial.a delete mode 100644 Source/ThirdParty/lib/android/r25b/x86/debug/libsgconnect.a delete mode 100644 Source/ThirdParty/lib/android/r25b/x86/debug/libsgcore.a delete mode 100644 Source/ThirdParty/lib/android/r25b/x86/release/libserial.a delete mode 100644 Source/ThirdParty/lib/android/r25b/x86/release/libsgconnect.a delete mode 100644 Source/ThirdParty/lib/android/r25b/x86/release/libsgcore.a diff --git a/README.md b/README.md index d33aec9d..8da6e2a6 100644 --- a/README.md +++ b/README.md @@ -177,19 +177,7 @@ Please note that modules postfixed with **Impl** are intended for interal use an │ │ │ │ │ └── release │ │ - │ ├── armv7 (32-bit ARM variant of Android) - │ │ │ - │ │ ├── debug - │ │ │ - │ │ └── release - │ │ - │ ├── x64 (64-bit x86-64 variant of Android) - │ │ │ - │ │ ├── debug - │ │ │ - │ │ └── release - │ │ - │ └── x86 (32-bit x86 variant of Android) + │ └── x64 (64-bit x86-64 variant of Android) │ │ │ ├── debug │ │ diff --git a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs index d870984e..4414d913 100644 --- a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs +++ b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs @@ -81,66 +81,17 @@ public class SenseGloveConnectImpl : ModuleRules string SourceDirectory = Path.GetFullPath(Path.Combine(PluginRootDirectory, "Source")); string ThirdPartyDirectory = Path.GetFullPath(Path.Combine(SourceDirectory, "ThirdParty")); string LibraryPath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "lib")); + string LibraryPathAnroidArm64 = ""; + string LibraryPathAnroidx64 = ""; string LibraryName = "sgconnect"; if (Target.Platform == UnrealTargetPlatform.Android) { LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android")); - -#if UE_5_1_OR_LATER LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b")); -#elif UE_5_0_OR_LATER - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r21e")); -#else - Debug.Assert(false, "Developing for Android on UE versions older than 5.0 is not supported!"); -#endif -#if UE_5_2_OR_LATER - if (Target.Architecture == UnrealArch.Arm64) - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); - } - else if (Target.Architecture == UnrealArch.X64) - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); - } - else - { - Debug.Assert(false, "Unsupported Android architecture!"); - } -#else - IAndroidToolChain ToolChain = AndroidExports.CreateToolChain(Target.ProjectFile); - List Architectures = ToolChain.GetAllArchitectures(); - - foreach (string Arch in Architectures) - { - if (Arch == "-arm64") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); - break; - } - else if (Arch == "-armv7") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "armv7")); - break; - } - else if (Arch == "-x64") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); - break; - } - else if (Arch == "-86") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x86")); - break; - } - else - { - Debug.Assert(false, "Unsupported Android architecture!"); - break; - } - } -#endif + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); LibraryName = string.Format("lib{0}.a", LibraryName); } @@ -209,21 +160,44 @@ public class SenseGloveConnectImpl : ModuleRules Debug.Assert(false, "Unsupported platform!"); } + string IncludePath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "include")); + PrivateIncludePaths.Add(IncludePath); + bool bDebug = (Target.Configuration == UnrealTargetConfiguration.Debug); - if (bDebug) + + if (Target.Platform == UnrealTargetPlatform.Android) { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "debug")); + if (bDebug) + { + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, "debug")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, "debug")); + } + else + { + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, "release")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, "release")); + } + + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, LibraryName)); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, LibraryName)); + + PublicAdditionalLibraries.Add(LibraryPathAnroidArm64); + PublicAdditionalLibraries.Add(LibraryPathAnroidx64); } else { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "release")); + if (bDebug) + { + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "debug")); + } + else + { + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "release")); + } + + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, LibraryName)); + PublicAdditionalLibraries.Add(LibraryPath); } - - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, LibraryName)); - string IncludePath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "include")); - - PrivateIncludePaths.Add(IncludePath); - PublicAdditionalLibraries.Add(LibraryPath); } private void AddSerialLibrary(ReadOnlyTargetRules Target) @@ -232,66 +206,17 @@ public class SenseGloveConnectImpl : ModuleRules string SourceDirectory = Path.GetFullPath(Path.Combine(PluginRootDirectory, "Source")); string ThirdPartyDirectory = Path.GetFullPath(Path.Combine(SourceDirectory, "ThirdParty")); string LibraryPath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "lib")); + string LibraryPathAnroidArm64 = ""; + string LibraryPathAnroidx64 = ""; string LibraryName = "serial"; if (Target.Platform == UnrealTargetPlatform.Android) { LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android")); - -#if UE_5_1_OR_LATER LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b")); -#elif UE_4_5_OR_LATER - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r21e")); -#else - Debug.Assert(false, "Developing for Android on UE versions older than 5.0 is not supported!"); -#endif -#if UE_5_2_OR_LATER - if (Target.Architecture == UnrealArch.Arm64) - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); - } - else if (Target.Architecture == UnrealArch.X64) - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); - } - else - { - Debug.Assert(false, "Unsupported Android architecture!"); - } -#else - IAndroidToolChain ToolChain = AndroidExports.CreateToolChain(Target.ProjectFile); - List Architectures = ToolChain.GetAllArchitectures(); - - foreach (string Arch in Architectures) - { - if (Arch == "-arm64") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); - break; - } - else if (Arch == "-armv7") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "armv7")); - break; - } - else if (Arch == "-x64") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); - break; - } - else if (Arch == "-86") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x86")); - break; - } - else - { - Debug.Assert(false, "Unsupported Android architecture!"); - break; - } - } -#endif + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); LibraryName = string.Format("lib{0}.a", LibraryName); } @@ -360,20 +285,43 @@ public class SenseGloveConnectImpl : ModuleRules Debug.Assert(false, "Unsupported platform!"); } + string IncludePath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "include")); + PrivateIncludePaths.Add(IncludePath); + bool bDebug = (Target.Configuration == UnrealTargetConfiguration.Debug); - if (bDebug) + + if (Target.Platform == UnrealTargetPlatform.Android) { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "debug")); + if (bDebug) + { + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, "debug")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, "debug")); + } + else + { + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, "release")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, "release")); + } + + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, LibraryName)); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, LibraryName)); + + PublicAdditionalLibraries.Add(LibraryPathAnroidArm64); + PublicAdditionalLibraries.Add(LibraryPathAnroidx64); } else { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "release")); + if (bDebug) + { + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "debug")); + } + else + { + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "release")); + } + + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, LibraryName)); + PublicAdditionalLibraries.Add(LibraryPath); } - - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, LibraryName)); - string IncludePath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "include")); - - PrivateIncludePaths.Add(IncludePath); - PublicAdditionalLibraries.Add(LibraryPath); } } \ No newline at end of file diff --git a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs index f4bb9bd9..b0b04591 100644 --- a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs +++ b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs @@ -80,66 +80,17 @@ public class SenseGloveCoreImpl : ModuleRules string SourceDirectory = Path.GetFullPath(Path.Combine(PluginRootDirectory, "Source")); string ThirdPartyDirectory = Path.GetFullPath(Path.Combine(SourceDirectory, "ThirdParty")); string LibraryPath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "lib")); + string LibraryPathAnroidArm64 = ""; + string LibraryPathAnroidx64 = ""; string LibraryName = "sgcore"; if (Target.Platform == UnrealTargetPlatform.Android) { LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android")); - -#if UE_5_1_OR_LATER LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b")); -#elif UE_5_0_OR_LATER - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r21e")); -#else - Debug.Assert(false, "Developing for Android on UE versions older than 5.0 is not supported!"); -#endif -#if UE_5_2_OR_LATER - if (Target.Architecture == UnrealArch.Arm64) - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); - } - else if (Target.Architecture == UnrealArch.X64) - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); - } - else - { - Debug.Assert(false, "Unsupported Android architecture!"); - } -#else - IAndroidToolChain ToolChain = AndroidExports.CreateToolChain(Target.ProjectFile); - List Architectures = ToolChain.GetAllArchitectures(); - - foreach (string Arch in Architectures) - { - if (Arch == "-arm64") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); - break; - } - else if (Arch == "-armv7") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "armv7")); - break; - } - else if (Arch == "-x64") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); - break; - } - else if (Arch == "-86") - { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "x86")); - break; - } - else - { - Debug.Assert(false, "Unsupported Android architecture!"); - break; - } - } -#endif + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPath, "arm64")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPath, "x64")); LibraryName = string.Format("lib{0}.a", LibraryName); } @@ -207,20 +158,43 @@ public class SenseGloveCoreImpl : ModuleRules Debug.Assert(false, "Unsupported platform!"); } + string IncludePath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "include")); + PrivateIncludePaths.Add(IncludePath); + bool bDebug = (Target.Configuration == UnrealTargetConfiguration.Debug); - if (bDebug) + + if (Target.Platform == UnrealTargetPlatform.Android) { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "debug")); + if (bDebug) + { + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, "debug")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, "debug")); + } + else + { + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, "release")); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, "release")); + } + + LibraryPathAnroidArm64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidArm64, LibraryName)); + LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPathAnroidx64, LibraryName)); + + PublicAdditionalLibraries.Add(LibraryPathAnroidArm64); + PublicAdditionalLibraries.Add(LibraryPathAnroidx64); } else { - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "release")); + if (bDebug) + { + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "debug")); + } + else + { + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "release")); + } + + LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, LibraryName)); + PublicAdditionalLibraries.Add(LibraryPath); } - - LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, LibraryName)); - string IncludePath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "include")); - - PrivateIncludePaths.Add(IncludePath); - PublicAdditionalLibraries.Add(LibraryPath); } } \ No newline at end of file diff --git a/Source/ThirdParty/lib/android/r25b/arm64/debug/libserial.a b/Source/ThirdParty/lib/android/r25b/arm64/debug/libserial.a index 42d22552..e14f982c 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/debug/libserial.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/debug/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73300b30c844881c20bcf8cb08b293d81c27963418c444be472cc06ac240cecc -size 1201156 +oid sha256:4b934d7ffef60b7f545127257b83be50844e6b39bc2be284caf287aced3dcf2a +size 1201140 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a index 3a89f336..ba355572 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78d5df2e2451a594171c534b35552d90a6404d2bb9f9d2b75c70b7751db3a52e -size 8998712 +oid sha256:a3900644cfe60326eff031ea7a4072109ba20fcc93b7c90f7086911a38dc8409 +size 8998616 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a index 6d5ef37d..2501c447 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e36d707fc8d88cb0484ca7992cf76d6bfd9611d554a1ced36e8f77ebda36f33 -size 15512436 +oid sha256:92d15d94891a18f7a92a4752d65c762c2911e5f4ba84a4f5d259db9c61dbb52c +size 15512308 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/release/libserial.a b/Source/ThirdParty/lib/android/r25b/arm64/release/libserial.a index 084e78e8..9f8b8c94 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/release/libserial.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/release/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4455c1beafc85f4c8137dc27e914fb130498185434529534cbcbfe6bce9235a -size 204788 +oid sha256:0f1f4508e8fc48c72406b8e4877b0569a809217a6057368847acfbb9da10a839 +size 204780 diff --git a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a index 5afdad6d..bb30810a 100644 --- a/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/arm64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:585aaf87c649cdb1c547bf85d0cabc23ff0063fc009d9cbe82e458bd5d0c3da1 +oid sha256:78e08e4b3b8e14140e112b5ee1a1f61082ae0ab0bbeb32b571a691b1dbc98d05 size 1945352 diff --git a/Source/ThirdParty/lib/android/r25b/armv7/debug/libserial.a b/Source/ThirdParty/lib/android/r25b/armv7/debug/libserial.a deleted file mode 100644 index 70c2c86b..00000000 --- a/Source/ThirdParty/lib/android/r25b/armv7/debug/libserial.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77fc47f0ffc5711c58d88227805a5ba423e4ad5cc9e00e6d95bb958e756e510c -size 1006808 diff --git a/Source/ThirdParty/lib/android/r25b/armv7/debug/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/armv7/debug/libsgconnect.a deleted file mode 100644 index 16347223..00000000 --- a/Source/ThirdParty/lib/android/r25b/armv7/debug/libsgconnect.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ae1daa5c8aca6fb2c235c5e1d34467429be1036001b37d63b93b9401a0bdbc4 -size 7374778 diff --git a/Source/ThirdParty/lib/android/r25b/armv7/debug/libsgcore.a b/Source/ThirdParty/lib/android/r25b/armv7/debug/libsgcore.a deleted file mode 100644 index ff917244..00000000 --- a/Source/ThirdParty/lib/android/r25b/armv7/debug/libsgcore.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5404e3ac98a3354fd9834663848d9ede133c6bff10aa0b09d2a0e63b1fa85b17 -size 13603188 diff --git a/Source/ThirdParty/lib/android/r25b/armv7/release/libserial.a b/Source/ThirdParty/lib/android/r25b/armv7/release/libserial.a deleted file mode 100644 index 7cf37531..00000000 --- a/Source/ThirdParty/lib/android/r25b/armv7/release/libserial.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a7e978e69d584446d8ac4d4ff351aa46077416069f696a29d90730985d38891 -size 179830 diff --git a/Source/ThirdParty/lib/android/r25b/armv7/release/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/armv7/release/libsgconnect.a deleted file mode 100644 index 541e87ca..00000000 --- a/Source/ThirdParty/lib/android/r25b/armv7/release/libsgconnect.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e07a5a66841f7723a10aaddd047460adac9458bc34c36d1d666b1582cdf8be8f -size 1123616 diff --git a/Source/ThirdParty/lib/android/r25b/armv7/release/libsgcore.a b/Source/ThirdParty/lib/android/r25b/armv7/release/libsgcore.a deleted file mode 100644 index 971e42cb..00000000 --- a/Source/ThirdParty/lib/android/r25b/armv7/release/libsgcore.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3baa06d23c07927e83c698fce069c832553f3fc79f11d07e39038529caf963a7 -size 1794094 diff --git a/Source/ThirdParty/lib/android/r25b/x64/debug/libserial.a b/Source/ThirdParty/lib/android/r25b/x64/debug/libserial.a index b417a360..bd173006 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/debug/libserial.a +++ b/Source/ThirdParty/lib/android/r25b/x64/debug/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f68f0d3b0c5904387eac5ce01b15f9f90516577fdcab8e174747fd2125d20b4c -size 1180980 +oid sha256:0351595c5bde877356168c83949ea72d3ea2691b90d016660c401004a3199d3e +size 1180964 diff --git a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a index 80334031..cea72d2e 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa967a2d2f230f146fb69d8580bcc07e7abc3bc8d886057de3bc483cd4e268d1 -size 8802584 +oid sha256:6c2d7dd37ee3340e4dc476510ba6ec9c143ac7d77a5a17eee94b5be4001c15bf +size 8802496 diff --git a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a index 4463c6a6..425ffcf9 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/x64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b38fba85780d7af95498aefb0e73a8a09d1a63b34b673e7b55664a1711c709de -size 15215076 +oid sha256:c6c7d6156489cc3e9ce6aa9fbbc7c02591ed1549dbf9b46dd95cc92834dc376d +size 15214940 diff --git a/Source/ThirdParty/lib/android/r25b/x64/release/libserial.a b/Source/ThirdParty/lib/android/r25b/x64/release/libserial.a index 7cf27f0e..9eb89871 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/release/libserial.a +++ b/Source/ThirdParty/lib/android/r25b/x64/release/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b256dfa2cfa4f83311f7dc7a4a006e3d9ec7a3b79812d4f7376aaab07456e41a -size 196988 +oid sha256:39b2f39bd96834bc386d5f035ed3a863ae9517df9cf621c7cbb6341b7e29956b +size 196980 diff --git a/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a b/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a index ee816ad0..250a5146 100644 --- a/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a +++ b/Source/ThirdParty/lib/android/r25b/x64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81920c52b78b2ae4246cdfcd24575fcd90171de59ed075630ae7601a5d2bcc1a +oid sha256:6d6a1f3fff0baa9956b79f69127fcff4551a270a5281865197e574f72f68ef03 size 1924200 diff --git a/Source/ThirdParty/lib/android/r25b/x86/debug/libserial.a b/Source/ThirdParty/lib/android/r25b/x86/debug/libserial.a deleted file mode 100644 index 49c22424..00000000 --- a/Source/ThirdParty/lib/android/r25b/x86/debug/libserial.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72c171fa1701bf167f43c1a5ee3ff1b0bf62ff4ced7e445fc4a52dc33fc61b9b -size 893684 diff --git a/Source/ThirdParty/lib/android/r25b/x86/debug/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/x86/debug/libsgconnect.a deleted file mode 100644 index e1a95da5..00000000 --- a/Source/ThirdParty/lib/android/r25b/x86/debug/libsgconnect.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98233a7da410b65c3a6897528658bfd63e6b6fdfc76fd9bf5ff9dd804ecf665a -size 6888320 diff --git a/Source/ThirdParty/lib/android/r25b/x86/debug/libsgcore.a b/Source/ThirdParty/lib/android/r25b/x86/debug/libsgcore.a deleted file mode 100644 index 8b3d2cd7..00000000 --- a/Source/ThirdParty/lib/android/r25b/x86/debug/libsgcore.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2cb4d8d997aa203fd1db6d87f65728ae7380d8b22a69b2a5b544fefb769c00a -size 11725788 diff --git a/Source/ThirdParty/lib/android/r25b/x86/release/libserial.a b/Source/ThirdParty/lib/android/r25b/x86/release/libserial.a deleted file mode 100644 index fac6630c..00000000 --- a/Source/ThirdParty/lib/android/r25b/x86/release/libserial.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a07a6a4588579c3967a8aa47d792539f9d84144f8b82777f83aadd927e517e43 -size 154510 diff --git a/Source/ThirdParty/lib/android/r25b/x86/release/libsgconnect.a b/Source/ThirdParty/lib/android/r25b/x86/release/libsgconnect.a deleted file mode 100644 index c1546407..00000000 --- a/Source/ThirdParty/lib/android/r25b/x86/release/libsgconnect.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eb7421c1e9ba7729e2f4ea08245e988b5c99a5c0a25e89aac98a1eaf5f9d92fb -size 927020 diff --git a/Source/ThirdParty/lib/android/r25b/x86/release/libsgcore.a b/Source/ThirdParty/lib/android/r25b/x86/release/libsgcore.a deleted file mode 100644 index aa59d84a..00000000 --- a/Source/ThirdParty/lib/android/r25b/x86/release/libsgcore.a +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51d5d82540090821d44aa030773d7bb1d7d04b352dc33a6ed812f1d3526fe3b6 -size 1520218 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libserial.a b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libserial.a index 5ea72217..0d7ce13f 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libserial.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6beaf71e157b18bcf04acf2d237b3c371bd848f98c3b6f988f2d047ea9c2a4d6 -size 933610 +oid sha256:0828434ae090a3d1c24b1b1f8ce5634f8d46713b3a1933a10c833f91743d109f +size 934754 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a index 75a19231..cebd0abc 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:198d59e274af90b58a45170b0be21a8f90f0139a963c3d5d56c7c8ead3b08a8d -size 7978164 +oid sha256:cddde47c1b81a9679db6e8c868e7284e721fef5ad5508de880ee6c7e581ac9c2 +size 7985868 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a index b535fd61..f5c6bd40 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d8fbf909e74c3a4cf8b56e9fa9459378ec66cff3a7c064dcfcc32071987cef3 -size 12900768 +oid sha256:6d1d189a55a058a68de1960806ac68763b8b3d767576a2a13e82f2769f8c4072 +size 12915456 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/release/libserial.a b/Source/ThirdParty/lib/linux/v21/aarch64/release/libserial.a index 984e6a61..e36e362e 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/release/libserial.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/release/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e5af3e70bedb9a4c6d41b234f18444788d82fbf079de210217e240553765638 -size 204352 +oid sha256:950e5c4f5f2b6fe4b8d5c46783cb197167b7e52c61f4503abd8f6ea9873fcdf4 +size 204488 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a index 716c4de9..88a065f4 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4d6e01c8b5f31e9e0ed89015d33f78ff2bac4e29677491d9534d1be2bed2d50 -size 1164264 +oid sha256:91e5c657c68dd0c3767b9340f1a4eaeb3462d1661ff815d52591d346e2271a42 +size 1165072 diff --git a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a index 24fe44d5..89abcb6f 100644 --- a/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/aarch64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf085a9294dcf037e2b95f939810b4016fbf0dae4f32c87a7499feaf33da90b8 -size 1867090 +oid sha256:07003f8d8906d84f579ed72dce1886e3348579f4f22ef2b6848d56f0b07798fc +size 1868018 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libserial.a b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libserial.a index a67e766b..106e170b 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libserial.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39f7372ad79202680e3fdc4d512442ee3f82b39794b26ded7ccf81fadcd2dabe -size 906418 +oid sha256:b39cdadcafde46ce084d12516fab761d57cb4742a342620cb39dd718342ac771 +size 907570 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a index b9b7acd6..486a7ff3 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:409c52ef4e5b6d63fcc566c8f6ffd03dcdca45c374b05a250929297e1ea707e3 -size 7682864 +oid sha256:e9c38c9c0431771f9ea4f0c23b976676f2783d1de0626f05fc9cebb1c5b61a0e +size 7690512 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a index 629d05c9..306b55b3 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c8a9a7ef9828884c00970cf385d3cdf1cb3d066df1e14a30293be18e8e97c09 -size 12571832 +oid sha256:b0e9b5a82cfa813693cac829967857aa01a83d5158fef15d5513f7ea6a37892c +size 12586536 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/release/libserial.a b/Source/ThirdParty/lib/linux/v21/x86-64/release/libserial.a index 72292449..e435ea8f 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/release/libserial.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/release/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ae80f76c1c094cd218263de0a4e22b8938de5b727e5cf8bc0c60133c15f676a -size 195656 +oid sha256:073672db98f3abee30f184cbf98f4ee0cac1c3342ddd9d727a686c0a64a87e12 +size 195792 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a index 2a87d20b..0b41ed87 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01d724d6b0cfd24628e3271f2d6798cc7419747588b0870d454ca1ab36ca0804 -size 1047954 +oid sha256:d0469a3fee1ff6bed8c593b337df931e84a9adfe9c5c8c2cd9a8044ef4837020 +size 1048738 diff --git a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a index a07b180d..5e5482fb 100644 --- a/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v21/x86-64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7c7bd694a5728677e8e053bfbfc0f195bec3ae60d72fecc00b099ec31b2c267 -size 1854098 +oid sha256:9eb5e260aaf4d9b330a919c11050f62124180289dea28f399f6dcf442011bcc8 +size 1855298 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libserial.a b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libserial.a index 8cd17792..138fc42a 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libserial.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:754edce9c9a873da598c8c6c0bdc9db6758132750a28ebec07b8c070005683f6 -size 1096582 +oid sha256:9aeebd82f3b53a1b4dbb3a17e9ca7beecb001f52a55694821faeed023e05da9e +size 1097926 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a index a7a1334b..585dd7e2 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9470677fb40e8b64cdca900426978dfb53612b62c1f6caa304e5fb352882c03a -size 8670870 +oid sha256:c0efcf8781bb683eee69257a0f8ff3054701329b0c56c3531ae45fe6c20b1e8e +size 8679302 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a index 166b998f..5f21490b 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1dc8be4d4e7b2b398c01f49cb177e4e3b89c36ad625fe6afc6799a430e3d9562 -size 15148450 +oid sha256:5b22668eedf5bb764718713d3127a6882aa2dbcc630df1aa894aea4ecc7702a2 +size 15165674 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/release/libserial.a b/Source/ThirdParty/lib/linux/v22/aarch64/release/libserial.a index a86cbad7..e354d349 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/release/libserial.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/release/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2bf083efaed0253e1fa80d5793501b8f0a2f1d13f0cff679cc142e0133e3b17c -size 205736 +oid sha256:01e571a6922f37e7c242e51e400a7ce3d0317a7717cceac6d230560d1f7e9e64 +size 205888 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a index 8ce0c052..c4f0e3c9 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b74dcb274d880c1572c9504742541d26377acb56c47a2c9de899e14f275e2b5 -size 1169834 +oid sha256:fd1c024d1a804b59ecc2e39ecda6f79aadd71a3ac33aa5a05253effbec209a0c +size 1170642 diff --git a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a index 3e46ba86..80bd639f 100644 --- a/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/aarch64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf369c143cd5439fadfa1fb5089abad9fc418baf7f5fa079d7705b287a5df72b -size 1895658 +oid sha256:f6e97a703f7987e02173033bb985f2c58baab1a83a6c441c86a160e79c5802f3 +size 1896586 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libserial.a b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libserial.a index be33f7a5..d7889a2a 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libserial.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcf7439df7b20a646ebc545dde1f214778d9c0bf5a2573d554dbd904588a682d -size 1067542 +oid sha256:d80df4cb95a70019765501330796578dd0c0bbcf396614f4bc0c7217930d0f40 +size 1068878 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a index e8097f5a..5ae23e16 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be797beda20c3d50af6e9e6adcd4b97ecb096b203190ab8d7cfa156ebd7f3fcc -size 8370154 +oid sha256:476bc3aa39a5adffe849aaaf4cbb5998c1ca5690ac127c14c10ad802b610617e +size 8378530 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a index 48b6e639..c2b6fdd7 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81ad7ddc928018f870fa032b103cd729e25bdfa386194206d156236fe930d1ff -size 14788266 +oid sha256:ec14c4e924ac407936d577367bfb8954a512c4ecad37784fe99039ec98885c18 +size 14805530 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/release/libserial.a b/Source/ThirdParty/lib/linux/v22/x86-64/release/libserial.a index a9df11ff..51996ca1 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/release/libserial.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/release/libserial.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b197de05a9dc96fd142d0910bf3fe1af6da5b8f59adbfd5e2b13d2d7dfc91fc8 -size 195768 +oid sha256:1885945651f58c73ead6f778f2f0e387a5fe6aff6eda5fc675f7ec3d7385d0bc +size 195912 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a index 22211fef..8b2b3c46 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c713df91e6ed65e8575377e19633812d083da4bee5830d8e5f08674d4d87dca -size 1050668 +oid sha256:c83d21c84603838490682e253d3d4da2468294d1cf92ea23ca55c03eefe18a2c +size 1051468 diff --git a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a index c979a0e8..33b9c982 100644 --- a/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v22/x86-64/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad27a214b8395bf1e25ee3b68c2fa185b2d48bb00f56af2ce797cae4b0816902 -size 1874998 +oid sha256:66140c324def792057b8506abb674f084194ed613a5092c2a08cfd5cd8d2890b +size 1876206 diff --git a/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib b/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib index 451591bf..e02d140a 100644 --- a/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc142/debug/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c36e0930fac630830d558a649b4309e87f836c4038bfcf5f46174e81df62a3d0 +oid sha256:dfcccc8ea68347ff873018ab692e31d52867b01ae5c9a69fd578028bfeb33504 size 1219882 diff --git a/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib index 2a920a94..eee47883 100644 --- a/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc142/debug/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2921553d43ae7c2edaa908bd41d2cf67ee3a16fbe65ad23dd343be28f6f8966 +oid sha256:abcfd07ea4e030a14bdca3ae02d0f8dcbc58fdc117091a9e661b39456fe223ae size 14380012 diff --git a/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib b/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib index 97473512..eb7cb129 100644 --- a/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc142/debug/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82241d37e17855e92d44e4fa9d801fc6e443ee3c02c4884ebe20971b6c9548a8 +oid sha256:21bec1b1630ac90f97cf2e6fb904fc6c67724d515511e804f43967943b7881cf size 22155130 diff --git a/Source/ThirdParty/lib/win64/msvc142/release/serial.lib b/Source/ThirdParty/lib/win64/msvc142/release/serial.lib index 90b7cfc4..5b90471d 100644 --- a/Source/ThirdParty/lib/win64/msvc142/release/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc142/release/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51027745e062e9c1019e10e5dbfd3e982edc3ed1d8ea4a3622c8dcf41fc320f2 +oid sha256:6b60be2e2d28851d7a7aa9cd108d4855cd325cc6010940b4a329c799e73cf1fc size 351186 diff --git a/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib index 01912b85..2f1a7e09 100644 --- a/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc142/release/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:606d6095ca1958fd6d213698b1212109bcd7df3e94155433b3d027a053bee2da +oid sha256:4cb461b82d42302af04823caa6fee20bcbbc05dc15e5d595834e631dc3a00866 size 3003480 diff --git a/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib b/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib index 558a2523..eaabeda3 100644 --- a/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc142/release/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56dfc50969d493269bb878c10dee930271bfca46b92e78bbe0829a24f1f9b0c8 +oid sha256:154b4323d778e7ddd581605bcd01867c0b70f589871950473adca0e4578571fb size 5214834 diff --git a/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib b/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib index f3293fa1..6ad230b1 100644 --- a/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc143/debug/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03e610c8147e546979c01e6a5bac0e9cca8e3ec4317d509ba05f6a747932e7d8 +oid sha256:52e1c513b0e72fa2612dd941bdde8a0bd8fb2d7825b8b543e5cb2dcc549d1fbd size 1197698 diff --git a/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib index a227ffe9..e9433558 100644 --- a/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc143/debug/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8be1089e210c580e37294b3859efae6553b31def2461e72a48c971697a4c1169 +oid sha256:7fff5e46fd852b367cea191b2a79ec5f7f3176d3c6da34325af176c7e79fd39c size 14868052 diff --git a/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib b/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib index 5632419d..5ca20323 100644 --- a/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc143/debug/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b26241b5ff678c09e97c0b15fcf19d2dacd01a106a0dacb2b884fc18bb6a110c +oid sha256:b0f14063bc17234efc46511894160697ce92638a6318e036ced848f6d1dca01c size 22266540 diff --git a/Source/ThirdParty/lib/win64/msvc143/release/serial.lib b/Source/ThirdParty/lib/win64/msvc143/release/serial.lib index 065f969e..9f55441c 100644 --- a/Source/ThirdParty/lib/win64/msvc143/release/serial.lib +++ b/Source/ThirdParty/lib/win64/msvc143/release/serial.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b12dfc573ab1c8bd48ade1e55c6cc0bb2e80ec14dbbdb1cfe93646b0eea0fa6f +oid sha256:0d81a00163d5c8d54ad5aecaaa6ece1aab3d14150269866bd394f5a5726870fe size 336716 diff --git a/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib b/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib index b908ca90..df2190c5 100644 --- a/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib +++ b/Source/ThirdParty/lib/win64/msvc143/release/sgconnect.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eff26c45251fc8b88afa63de6260bf94d1cf15cfc76d2d6803b20a00c5a850cb +oid sha256:bc32cd1bce055cf2a7e2137f941d75ee82a0b7770ddb916f9b1caa84c5096bcb size 2879430 diff --git a/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib b/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib index 26bb4a4a..21d3f4e2 100644 --- a/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib +++ b/Source/ThirdParty/lib/win64/msvc143/release/sgcore.lib @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ca6fa807a8dbcda7a4f1d109ab4212afa30bfb0a8bff607c0b32b58e8a22552 +oid sha256:456614231262c63ad8db9be1cb7b7cf46e88db3a477cb6500393b04db2651d9f size 4997490