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