Fixed typo

This commit is contained in:
Joseph Henry
2018-07-31 17:43:50 -07:00
parent 5fbc56333d
commit effe5facbc

View File

@@ -65,20 +65,21 @@ We recommend using [CMake](https://cmake.org/) and [clang](https://en.wikipedia.
git submodule init git submodule init
git submodule update git submodule update
make patch make patch
cmake -H. -Bbuild cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
```
or possibly:
```
cmake -H. -Bbuild --config Release
``` ```
Then Then
``` ```
cmake --build build -DCMAKE_BUILD_TYPE=Release cmake --build build
``` ```
or
```
cmake --build build --config Release
```
Builds are placed in `bin\lib` Builds are placed in `bin\lib`