Skip to content
Snippets Groups Projects
Unverified Commit 33efaaa7 authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

[web] Fixed typo in MSVC CMake config.

parent 1ece5579
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment