From 5f5e2e92c108ebfe64833f4c506f6ae9b1cf5319 Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Fri, 17 Jul 2026 09:51:05 +0200 Subject: [PATCH] fix ThirdParty/SGBleThirdPartyLibs's module warnings --- Handbook/src/appendix/changelog.md | 1 + .../SGBleThirdPartyLibs/SGBleThirdPartyLibs.Build.cs | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Handbook/src/appendix/changelog.md b/Handbook/src/appendix/changelog.md index c30d8fd1..649e61f9 100644 --- a/Handbook/src/appendix/changelog.md +++ b/Handbook/src/appendix/changelog.md @@ -12,6 +12,7 @@ This patch release addresses `v2.9.x` build issues on Microsoft Windows and MSVC ### Fixed - Attempt at fixing build issues in certain MSVC configurations that also affects Fab Store submissions due to: `MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance fatal error C1900: Il mismatch between 'P1' version '20250730' and 'P2' version '20240319'; LINK : fatal error LNK1257: code generation failed`. +- Fix `ThirdParty/SGBleThirdPartyLibs`'s module `.Build.cs` warnings. ### Changed diff --git a/Source/ThirdParty/SGBleThirdPartyLibs/SGBleThirdPartyLibs.Build.cs b/Source/ThirdParty/SGBleThirdPartyLibs/SGBleThirdPartyLibs.Build.cs index 7c25a5af..a5402381 100644 --- a/Source/ThirdParty/SGBleThirdPartyLibs/SGBleThirdPartyLibs.Build.cs +++ b/Source/ThirdParty/SGBleThirdPartyLibs/SGBleThirdPartyLibs.Build.cs @@ -47,8 +47,6 @@ public class SGBleThirdPartyLibs : ModuleRules string ThirdPartyDirectory = Path.GetFullPath(Path.Combine(ModuleDirectory, "..")); string LibraryPath = Path.GetFullPath(Path.Combine(ThirdPartyDirectory, "lib")); - string LibraryPathAnroidAArch64 = ""; - string LibraryPathAnroidX64 = ""; string LibraryName = "sgble"; bool bIsLinux = Target.Platform == UnrealTargetPlatform.Linux; @@ -114,4 +112,4 @@ public class SGBleThirdPartyLibs : ModuleRules }); } } -} \ No newline at end of file +}