bump senseglove libraries to v2.305.3-17a820b6e with support for Android NDK r27c and Epic Native/Cross Toolchains v26
This commit is contained in:
@@ -11,6 +11,9 @@ This minor release focuses on delivering performance improvements, made possible
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
- Added support for UE `5.7`.
|
||||||
|
- Added support for Android NDK `r27c`, which is the recommend Android SDK since UE `5.6.1` and the default for UE `5.7+` for Android Standalone builds.
|
||||||
|
- Added support for Epic Cross and Native Toolchains `v26`, which is shipped with the UE `5.7` and GNU/Linux support.
|
||||||
- Added prebuilt binaries for third-party library [{fmt} Formatting Library](https://github.com/fmtlib/fmt) on all supported platforms. This third-party library is a required dependency of SenseGlove libraries >= `v2.300.0`.
|
- Added prebuilt binaries for third-party library [{fmt} Formatting Library](https://github.com/fmtlib/fmt) on all supported platforms. This third-party library is a required dependency of SenseGlove libraries >= `v2.300.0`.
|
||||||
- Added prebuilt binaries for third-party library: [Loguru Logging Library](https://github.com/emilk/loguru) on all supported platforms. This third-party library is a required dependency of SenseGlove libraries >= `v2.300.0`.
|
- Added prebuilt binaries for third-party library: [Loguru Logging Library](https://github.com/emilk/loguru) on all supported platforms. This third-party library is a required dependency of SenseGlove libraries >= `v2.300.0`.
|
||||||
- Added third-party module `SGCommonThirdPartyLibs`.
|
- Added third-party module `SGCommonThirdPartyLibs`.
|
||||||
@@ -40,7 +43,7 @@ This minor release focuses on delivering performance improvements, made possible
|
|||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- `SGDeviceList::SenseCommRunning()` has been renamed to `SGDeviceList::SenseComRunning()` due to a typo. This change breaks ABI and API compatibility with previous versions of the plugin and affects both C++ and Blueprint code.
|
- `SGDeviceList::SenseCommRunning()` has been renamed to `SGDeviceList::SenseComRunning()` due to a typo. This change breaks ABI and API compatibility with previous versions of the plugin and affects both C++ and Blueprint code.
|
||||||
- Bumped the SenseGlove libraries to `v2.304.1-fb2a464d6`. This release of the SenseGlove libraries disables RTTI/Exceptions for the most parts and isolates it to a minor portion of the code base, which yields noticable performance gains. Futhermore, some optiomizations are done in the multi-threaded code, such as replacing Spinlocks with Adaptive Mutexes (a hybrid Mutex/Spinlock).
|
- Bumped the SenseGlove libraries to `v2.305.3-17a820b6e`. This release of the SenseGlove libraries disables RTTI/Exceptions for the most parts and isolates it to a minor portion of the code base, which yields noticable performance gains. Futhermore, some optiomizations are done in the multi-threaded code, such as replacing Spinlocks with Adaptive Mutexes (a hybrid Mutex/Spinlock).
|
||||||
- As a result of SenseGlove libraries >= `v2.300.0` changing it's directory structure, the `ThirdParty` folder's directory structure has been revamped.
|
- As a result of SenseGlove libraries >= `v2.300.0` changing it's directory structure, the `ThirdParty` folder's directory structure has been revamped.
|
||||||
- Renamed third-party module `SGSerialThirdPartyLibs` to `SGWjwwoodSerialThirdPartyLibs` since SenseGlove libraries >= `v2.300.0` ships a new static library named `sgserial`. Thus, to avoid confusion and naming conflicts the third-party `serial` static library is now provided by the `SGWjwwoodSerialThirdPartyLibs` module and `sgserial` is provided by the `SGSerialThirdPartyLibs` module.
|
- Renamed third-party module `SGSerialThirdPartyLibs` to `SGWjwwoodSerialThirdPartyLibs` since SenseGlove libraries >= `v2.300.0` ships a new static library named `sgserial`. Thus, to avoid confusion and naming conflicts the third-party `serial` static library is now provided by the `SGWjwwoodSerialThirdPartyLibs` module and `sgserial` is provided by the `SGSerialThirdPartyLibs` module.
|
||||||
- `FSGGloveTrackingSettings::GloveConnectivityCheckInterval` settings have been renamed to `FSGGloveTrackingSettings::DataRetrievalRefreshRate` for adoption other than glove connectivity use cases.
|
- `FSGGloveTrackingSettings::GloveConnectivityCheckInterval` settings have been renamed to `FSGGloveTrackingSettings::DataRetrievalRefreshRate` for adoption other than glove connectivity use cases.
|
||||||
|
|||||||
@@ -61,7 +61,14 @@ public class SGBleThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
|
|||||||
@@ -61,7 +61,14 @@ public class SGCommonThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGCommonThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
+10
-1
@@ -61,7 +61,14 @@ public class SGConnectShmThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGConnectShmThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
+10
-1
@@ -61,7 +61,14 @@ public class SGConnectThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidx64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGConnectThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
+10
-1
@@ -61,7 +61,14 @@ public class SGCoreShmThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGCoreShmThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
@@ -61,7 +61,14 @@ public class SGCoreThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGCoreThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
@@ -66,7 +66,14 @@ public class SGFmtThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -77,7 +84,9 @@ public class SGFmtThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
@@ -61,7 +61,14 @@ public class SGLogThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGLogThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
@@ -66,7 +66,14 @@ public class SGLoguruThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -77,7 +84,9 @@ public class SGLoguruThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
@@ -61,7 +61,14 @@ public class SGSerialThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGSerialThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
+10
-1
@@ -61,7 +61,14 @@ public class SGWjwwoodSerialThirdPartyLibs : ModuleRules
|
|||||||
if (bIsAndroid)
|
if (bIsAndroid)
|
||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "android"));
|
||||||
|
|
||||||
|
#if UE_5_6_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r27c"));
|
||||||
|
#elif UE_5_4_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "r25b"));
|
||||||
|
#else
|
||||||
|
Debug.Assert(false, "Unsupported engine version or compiler!");
|
||||||
|
#endif
|
||||||
|
|
||||||
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
LibraryPathAnroidAArch64 = Path.GetFullPath(Path.Combine(LibraryPath, "aarch64"));
|
||||||
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
LibraryPathAnroidX64 = Path.GetFullPath(Path.Combine(LibraryPath, "x86-64"));
|
||||||
@@ -72,7 +79,9 @@ public class SGWjwwoodSerialThirdPartyLibs : ModuleRules
|
|||||||
{
|
{
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "linux"));
|
||||||
|
|
||||||
#if UE_5_6_OR_LATER
|
#if UE_5_7_OR_LATER
|
||||||
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v26"));
|
||||||
|
#elif UE_5_6_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v25"));
|
||||||
#elif UE_5_5_OR_LATER
|
#elif UE_5_5_OR_LATER
|
||||||
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
LibraryPath = Path.GetFullPath(Path.Combine(LibraryPath, "v23"));
|
||||||
|
|||||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user