In the C++ prerequisites, link to the cmake website

It's easier that way :-)
This commit is contained in:
Simon Hausmann 2021-11-24 13:01:18 +01:00
parent a244e16829
commit 42477db3e3
3 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ First you need to install the prerequisites:
* Install Rust by following the [Rust Getting Started Guide](https://www.rust-lang.org/learn/get-started). Once this is done, * Install Rust by following the [Rust Getting Started Guide](https://www.rust-lang.org/learn/get-started). Once this is done,
you should have the ```rustc``` compiler and the ```cargo``` build system installed in your path. you should have the ```rustc``` compiler and the ```cargo``` build system installed in your path.
* **cmake** (3.19 or newer) * **[cmake](https://cmake.org/download/)** (3.19 or newer)
* A C++ compiler that supports C++17 (e.g., **MSVC 2019** on Windows) * A C++ compiler that supports C++17 (e.g., **MSVC 2019** on Windows)
You can include SixtyFPS in your CMake project using CMake's `FetchContent` feature. Insert the following snippet into your You can include SixtyFPS in your CMake project using CMake's `FetchContent` feature. Insert the following snippet into your

View file

@ -32,7 +32,7 @@ First you need to install the prerequisites:
* Install Rust by following the [Rust Getting Started Guide](https://www.rust-lang.org/learn/get-started). If you already * Install Rust by following the [Rust Getting Started Guide](https://www.rust-lang.org/learn/get-started). If you already
have Rust installed, make sure that it's at least version 1.54 or newer. You can check which version you have installed have Rust installed, make sure that it's at least version 1.54 or newer. You can check which version you have installed
by running `rustc --version`. Once this is done, you should have the ```rustc``` compiler and the ```cargo``` build system installed in your path. by running `rustc --version`. Once this is done, you should have the ```rustc``` compiler and the ```cargo``` build system installed in your path.
* **cmake** (3.19 or newer) * **[cmake](https://cmake.org/download/)** (3.19 or newer)
* A C++ compiler that supports C++17 (e.g., **MSVC 2019** on Windows) * A C++ compiler that supports C++17 (e.g., **MSVC 2019** on Windows)
You can include SixtyFPS in your CMake project using CMake's [`FetchContent`](https://cmake.org/cmake/help/latest/module/FetchContent.html) feature. You can include SixtyFPS in your CMake project using CMake's [`FetchContent`](https://cmake.org/cmake/help/latest/module/FetchContent.html) feature.

View file

@ -36,7 +36,7 @@ You can still not build it by doing `cargo build --workspace --exclude sixtyfps-
### For the C++ dev (optional) ### For the C++ dev (optional)
* **cmake** (3.19 or newer) * **[cmake](https://cmake.org/download/)** (3.19 or newer)
* A C++ compiler that can do C++17 (e.g., **MSVC 2019** on Windows) * A C++ compiler that can do C++17 (e.g., **MSVC 2019** on Windows)
## Testing ## Testing