Skip to content
Merged
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions docs/user_guide/environment.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Set Up Your Environment
========================

Build prerequisites
-------------------
- **Windows**: Download and install CMake from https://cmake.org/download (select the Windows installer) or install using Chocolatey:
.. code-block:: powershell
choco install cmake

- **Linux (Ubuntu/Debian)**: Install using package manager:
.. code-block:: bash
sudo apt update
sudo apt install -y cmake

- **macOS**: Install using Homebrew:
.. code-block:: bash
brew update
brew install cmake

Code Style Analysis
--------------------
Please follow the `Google C++ Style Guide <https://google.github.io/styleguide/cppguide.html>`_.
Expand Down
Loading