PIP_NO_FILESYSTEM and PIP_NO_THREADS

This commit is contained in:
2026-03-29 12:22:35 +03:00
parent 15f90d9e17
commit a450235743
17 changed files with 55 additions and 33 deletions

View File

@@ -5,28 +5,28 @@
### Basic Build
```bash
# Configure with CMake (release build)
cmake -B build
cmake -B build -j16
# Build the project
cmake --build build
cmake --build build -j16
# Install (default system location)
cmake --build build --target install
cmake --build build --target install -j16
# Local install (bin/lib/include in build directory)
cmake -B build -DLOCAL=ON
cmake -B build -DLOCAL=ON -j16
```
### With Tests
```bash
cmake -B build -DTESTS=ON
cmake --build build
cmake -B build -DTESTS=ON -j16
cmake --build build -j16
cd build && ctest
```
### Build Only
```bash
cmake --build build
cmake --build build -j16
```
### Run Single Test
@@ -162,4 +162,4 @@ libs/
- Project uses custom CMake macros from `cmake/` directory
- Version format: `MAJOR.MINOR.REVISION` (e.g., 5.6.0)
- All files have LGPL license header
- Support for multiple platforms: Windows, Linux, QNX, Android, Apple
- Support for multiple platforms: Windows, Linux, QNX, Android, Apple