fix(doc/make/msys2): incorrect build instructions

-D CMAKE_BUILD_TYPE=Release does nothing since the default build type is Release. Also, it should be enclosed in quotes "-D CMAKE_BUILD_TYPE=Release", otherwise the shell/cmake fails to properly interpret the arguments.
This commit is contained in:
Andrew Ashworth 2016-12-14 23:16:23 -05:00 committed by Leonardo de Moura
parent 8b84af4853
commit 3153b72415

View file

@ -30,6 +30,6 @@ In the [msys2] shell, execute the following commands.
git clone https://github.com/leanprover/lean
cd lean
mkdir build && cd build
cmake ../src -G Ninja -D CMAKE_BUILD_TYPE=Release
cmake ../src -G Ninja
ninja
```