Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions renderer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@

### Build Modes

| Mode | CMake Flag | Output | Description |
|------|-----------|--------|-------------|
| **Core** | `-DBUILD_MODE=CORE` | `-` | Build only core rendering library for testing |
| **CLI** | `-DBUILD_MODE=CLI` | `renderer_cli` | Standalone CLI application |
| **Worker** | `-DBUILD_MODE=WORKER` | `renderer_worker` | Build renderer worker for web service |
| **Both** | `-DBUILD_MODE=BOTH` | `renderer_cli` + `renderer_worker` | Build both CLI and worker versions |
| Mode | CMake Flag | Docker Build Flag | Output | Description |
|------|-----------|--------|-----------|----------|
| **Core** | `-DBUILD_MODE=CORE` | `BUILD_MODE=CORE` | - | Build only core rendering library for testing |
| **CLI** | `-DBUILD_MODE=CLI` | `BUILD_MODE=CLI` | `renderer_cli` | Standalone CLI application |
| **Worker** | `-DBUILD_MODE=WORKER` | `BUILD_MODE=WORKER` | `renderer_worker` | Build renderer worker for web service |
| **Both** | `-DBUILD_MODE=BOTH` | `BUILD_MODE=BOTH` | `renderer_cli` + `renderer_worker` | Build both CLI and worker versions |

### Build Options

| Option | CMake Flag | Description |
|--------|-----------|-------------|
| **Tests** | `-DBUILD_TESTS=ON` | Build unit tests |
| Option | CMake Flag | Docker Build Flag | Description |
|--------|-----------|---------------|---------|
| **Tests** | `-DBUILD_TESTS=ON` | `BUILD_TESTS=ON` | Build unit tests |

---

Expand Down
Loading