PIP_NO_FILESYSTEM and PIP_NO_THREADS
This commit is contained in:
16
AGENTS.md
16
AGENTS.md
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user