Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 3,
"cmakeMinimumRequired": {"major": 3, "minor": 14, "patch": 0},
"cmakeMinimumRequired": {"major": 3, "minor": 21, "patch": 0},
"configurePresets": [
{
"name": "gcc",
Expand Down
4 changes: 2 additions & 2 deletions docs/BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Build setup, dependencies, and how to run tests. For project overview, see the [

## Requirements

- **CMake** — **3.14 or newer** if you use **`cmake --preset`** ([CMakePresets.json](../CMakePresets.json)). The root [CMakeLists.txt](../CMakeLists.txt) declares `cmake_minimum_required(3.14)` for manual configures; presets are the documented workflow.
- **CMake** — **3.21 or newer** if you use **`cmake --preset`** ([CMakePresets.json](../CMakePresets.json)) — presets format v3 requires CMake 3.21. The root [CMakeLists.txt](../CMakeLists.txt) declares `cmake_minimum_required(3.14)` for manual configures; presets are the documented workflow.
- **Compiler** — **C++20** required (use a C++20-capable GCC or Clang).
- **GoogleTest & GoogleMock** — Install development packages for your OS (below). The build also uses **FetchContent** to obtain GoogleTest when you configure with CMake.
- **Threads** — For concurrency tests (and deadlock tests when enabled).
Expand Down Expand Up @@ -83,7 +83,7 @@ brew install googletest cmake ninja
## Tools and environment

- **Compiler:** C++20-capable **GCC** or **Clang**
- **Build:** CMake **3.14+** for presets; Ninja recommended (generator in presets)
- **Build:** CMake **3.21+** for presets (format v3); Ninja recommended (generator in presets)
- **Tests:** GoogleTest & GoogleMock
- **IDE:** Cursor (optional Socratic rules in `.cursor/rules/`)

Expand Down