@@ -71,7 +71,7 @@ Please also note that in Visual Studio you have to choose the correct configurat
CMake can be run from the shell by invoking the cmake command inside a build directory. You can pass any CMake variable or option with `-DVARIABLE_NAME=VALUE` (note the `-D` in front!). You can also pass the generator you want to use (e.g. `Unix Makefiles` or `Visual Studio 15 2017 Win64`-project files) with the `-G` parameter (to see all available generators just run `cmake --help`), although in most cases the appropriate generator will be chosen automatically. The last parameter to the CMake command is the path to the source code directory. A typical call would look like this:
```bash
$ cmake -G "Visual Studio 15 2017 Win64 -DCMAKE_BUILD_TYPE=Release ../ogs
$ cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Release ../ogs
```
CMake tries to autodetect your compiler so in most cases this should be enough: