Merge branch 'main' into feature/orca_network_refactor

This commit is contained in:
SoftFever
2026-02-02 23:51:39 +08:00
committed by GitHub
7 changed files with 100 additions and 19 deletions

View File

@@ -25,6 +25,25 @@ cmake --build build/arm64 --config RelWithDebInfo --target all --
```bash
cmake --build build/arm64 --config RelWithDebInfo --target all --
```
### Build test:
**Always use this command to build the project when testing build issues on Windows.**
```bash
cmake --build . --config %build_type% --target ALL_BUILD -- -m
```
### Building on macOS
**Always use this command to build the project when testing build issues on macOS.**
```bash
cmake --build build/arm64 --config RelWithDebInfo --target all --
```
### Building on Linux
**Always use this command to build the project when testing build issues on Linux.**
```bash
cmake --build build/arm64 --config RelWithDebInfo --target all --
```