diff --git a/README.md b/README.md index 04e64386..1f2c9726 100644 --- a/README.md +++ b/README.md @@ -186,19 +186,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 a2f083b3..1e121558 100644 --- a/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs +++ b/Source/SenseGloveConnectImpl/SenseGloveConnectImpl.Build.cs @@ -81,64 +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")); -#else - Debug.Assert(false, "Developing for Android on UE versions older than 5.1 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); } @@ -197,21 +150,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) @@ -220,64 +196,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")); -#else - Debug.Assert(false, "Developing for Android on UE versions older than 5.1 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); } @@ -336,20 +265,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 9dde177f..ee93dbcd 100644 --- a/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs +++ b/Source/SenseGloveCoreImpl/SenseGloveCoreImpl.Build.cs @@ -80,64 +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")); -#else - Debug.Assert(false, "Developing for Android on UE versions older than 5.1 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); } @@ -195,20 +148,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 98286cae..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:7bab78fd343f19b196756773ccc21d7bce30dee20a3ac608f990298eb7b30868 -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 023e2dcb..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:56880bb76882f6faac8b986211455ab6b7480ab58038ec6748f7be3e15fc6bbc +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 ada41a77..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:6346fcc54b375d86ad6f0006c87b3c4fe6bfc412120a057fc178e317d042bdb2 -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 3beca458..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:17aa47a3a0057bb811b4b4a5c840373fffdc34ce3ff90a930bc29d80f322e019 -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 e749de5b..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:0272ccb026e2fc09562c2b7013a25e4193ca0463abea2f01cc6156523ca38944 -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 32094114..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:9c22d2485f48c076ef339bb18ed907976424a2dd92955efb41f4d8f68c771d75 +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 d379a977..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:efe957e7c242a6414fbe4557895cd93f2e636be7d0c1672d79d503c014d11b68 -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 18aeffa5..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:04949717bd709fdd44106606ccb1631974af97c5f15d7c1f3c7981d855a767b6 -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 687deea9..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:c9edc099b67b4018e16af2c183fb845690dc3fe267a06d630c2ba9618ff64e1e -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 f3744ded..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:baa709bbe1d54d71f50d615d873b5be8e43ff26296fd6eea29d6e13efc2d0be7 -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 01093de5..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:8010be4813485ade40a7e81153a9dd5c35cbf75b0fe042eb5d65506f23027dfc -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 482cc1c3..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:2c6186614ffb154c4df5653670fc2ad8ff1b67dda642ac2b5af2385f5c9b8622 -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 666f44a3..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:b279de4b0c967b6432debddf4be4e6de513b0a4236db34add90403a4cabef4e7 -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 6587f4c3..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:6bf5f253cfc87313f5dfe3bb9ca478d30ebbb8281773101794327f4a54f323d0 -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 31167f6e..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:64a8a1d25b888069618c8ff9456e2643c7df4e2b534b493efd17ff8ceff2092d -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 b073726c..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:e67c87a2539c6208ed3d45365cecd48bc374acbdc0a7035c9a7ece35a9d5da33 -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 ad458837..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:87282d66e9559920f39715eeb2ea7f719cf2009b4002b6b73aea71ae39b9a2c7 -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 dcb5a52c..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:2f9e8855b0766657970da056759ea1e3793ca40bccfdd2ef1663dd7f64262a9e -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 a3c36320..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:977065619eb8a9402f671cf4155b02cf65b25f24070f1e34f33f65073b7474f6 -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 1858fc9c..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:793a41114446937851b1a08fc323162ed7853a8a7a03b02c768b678de127dc0c -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 c44e5db7..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:bcb4c5f51435de7a2ee87278b4bc8cd1d9f2004d661e8a68f287329177ee855e -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 e787598c..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:79137645b25a62a3d73437e35ee5da036f12a18bd9cb858603b4cd466be2f9e4 -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 a2828255..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:1a864556fe96298da6f6936bc91d42d0c796bb51dabf5e8a4042aebc3adc75e8 -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 76357ed8..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:f434c8b4f78dbed551d13e36d52ca3cf84276c1b3712e7b270ebf17b62e17792 -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 c2d0c90f..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:26bd56eb42999e74984494878d9ecabf0bf2aec16b0d0450866b73f3efcf6082 +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 6d7a77a9..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:924886ac44bb46d6e038ca20668815b3312307b9b1ac7701832d05c96c00634e +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 e1fded43..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:728e1886562040b87cff1b3f02cd13207e38d4c0d9e525c6c11e96d801579d7a -size 22155166 +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 f80cac28..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:be32ffd1eb9b18855934238ee097ddc6eaa68019f24eb8502d8eaa02caa14ff5 +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 5ac184de..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:b8087502947c851f0ecc6ccb5cbef8321ce47c91badbba5c7729e1dbbf99513d +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 af79a3db..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:9de6670fb4bbcf0a645420f6b0b9ee0eb7df37ec3129c44fd12b8b990c0e5c93 +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 ccbedf41..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:46c45ee47bd200a5b9d6686ad5624027e72f5002edd4485cfce4e509d4207748 +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 dc214eb2..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:7e5f054bf6af3b0f572dcb14dffcf374c57a79e27a40315527d02585fad55307 +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 d846b49f..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:fed335100a6b44d28bb62ac0e2d9bc593268f435e87407d2cf285a4cb274a45b +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 e4b9ada1..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:6d3038bc3230ed29e07b7902525d9a5ea8d730e95105098598b326abcebd77b9 +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 e4ffffce..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:a2eecd7b7a4da9642f6dbe3ad48322704880b894feab4df7211b027b38b5b2b0 +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 c140f78e..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:de5a9548dab6875bb8b01d0dfe42a8161a167cdd369e7a4d03f59c1547ac2424 +oid sha256:456614231262c63ad8db9be1cb7b7cf46e88db3a477cb6500393b04db2651d9f size 4997490