update the outdated directory structure section inside the handbook with the latest changes

This commit is contained in:
Mamadou Babaei
2025-06-04 02:23:48 +02:00
parent ee06a344ae
commit 0f45c30935
2 changed files with 51 additions and 7 deletions
+4
View File
@@ -20,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Dropped support for Epic Native Toolchain `v24`, which was last shipped with the preview release of UE `5.6`, but has been removed from the `5.6` branch on GitHub. - Dropped support for Epic Native Toolchain `v24`, which was last shipped with the preview release of UE `5.6`, but has been removed from the `5.6` branch on GitHub.
### Documentation
- Revised the outdated [Plugin Directory Structure](./directory-structure.html) section to accurately reflect the latest changes to the `Source/ThirdParty` directory layout changes.
## [2.5.0] - 2025-05-09 ## [2.5.0] - 2025-05-09
This minor release primarily focuses on bringing Bluetooth Low Energy support to the SenseGlove Unreal Engine integration. This minor release primarily focuses on bringing Bluetooth Low Energy support to the SenseGlove Unreal Engine integration.
+47 -7
View File
@@ -62,6 +62,10 @@
└── ThirdParty (3rd-party dependencies) └── ThirdParty (3rd-party dependencies)
├── android (.jar file Java libraries for Android) ├── android (.jar file Java libraries for Android)
│ │
│ ├── debug
│ │
│ └── release
├── include (header files) ├── include (header files)
│ │ │ │
@@ -69,6 +73,8 @@
│ │ │ │
│ ├── SenseGlove │ ├── SenseGlove
│ │ │ │ │ │
│ │ ├── BLE (SGBLE headers)
│ │ │
│ │ ├── Connect (SGConnect headers) │ │ ├── Connect (SGConnect headers)
│ │ │ │ │ │
│ │ └── Core (SGCoreCpp headers) │ │ └── Core (SGCoreCpp headers)
@@ -95,29 +101,57 @@
├── linux ├── linux
│ │ │ │
│ ├── v21 (UE 5.2 Linux dependencies) │ ├── rustc (GNU/Linux binary dependencies built with Rust)
│ │ │ │ │ │
│ │ ├── aarch64 (dependencies targeting AArch64 Linux architecture) │ │ ├── aarch64 (dependencies targeting GNU/Linux AArch64 architecture)
│ │ │ │ │ │ │ │
│ │ │ ├── debug │ │ │ ├── debug
│ │ │ │ │ │ │ │
│ │ │ └── release │ │ │ └── release
│ │ │ │ │ │
│ │ └── x86-64 (dependencies targeting x86-64 Linux architecture) │ │ └── x86-64 (dependencies targeting GNU/Linux x86-64 architecture)
│ │ │ │ │ │
│ │ ├── debug │ │ ├── debug
│ │ │ │ │ │
│ │ └── release │ │ └── release
│ │ │ │
── v22 (UE 5.3 and 5.4 Linux dependencies) ── v22 (UE 5.3 and 5.4 GNU/Linux dependencies)
│ │ │
│ │ ├── aarch64 (dependencies targeting GNU/Linux AArch64 architecture)
│ │ │ │
│ │ │ ├── debug
│ │ │ │
│ │ │ └── release
│ │ │
│ │ └── x86-64 (dependencies targeting GNU/Linux x86-64 architecture)
│ │ │
│ │ ├── debug
│ │ │
│ │ └── release
│ │
│ ├── v23 (UE 5.5 GNU/Linux dependencies)
│ │ │
│ │ ├── aarch64 (dependencies targeting GNU/Linux AArch64 architecture)
│ │ │ │
│ │ │ ├── debug
│ │ │ │
│ │ │ └── release
│ │ │
│ │ └── x86-64 (dependencies targeting GNU/Linux x86-64 architecture)
│ │ │
│ │ ├── debug
│ │ │
│ │ └── release
│ │
│ └── v25 (UE 5.6 GNU/Linux dependencies)
│ │ │ │
│ ├── aarch64 (dependencies targeting AArch64 Linux architecture) │ ├── aarch64 (dependencies targeting GNU/Linux AArch64 architecture)
│ │ │ │ │ │
│ │ ├── debug │ │ ├── debug
│ │ │ │ │ │
│ │ └── release │ │ └── release
│ │ │ │
│ └── x86-64 (dependencies targeting x86-64 Linux architecture) │ └── x86-64 (dependencies targeting GNU/Linux x86-64 architecture)
│ │ │ │
│ ├── debug │ ├── debug
│ │ │ │
@@ -131,7 +165,13 @@
│ │ │ │
│ └── release │ └── release
── msvc143 (Microsoft Visual Studio 2022 dependencies) ── msvc143 (Microsoft Visual Studio 2022 dependencies)
│ │
│ ├── debug
│ │
│ └── release
└── rustc (Microsoft Windows binary dependencies built with Rust)
├── debug ├── debug