File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2317,9 +2317,9 @@ This will build the examples in the `build/examples` directory:
2317
2317
2318
2318
``` bash
2319
2319
mkdir build
2320
- cmake -version
2320
+ cd build
2321
2321
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=" -O2"
2322
- cmake --build . -j 2 - -config Release
2322
+ cmake --build . --config Release
2323
2323
```
2324
2324
2325
2325
On windows, replace ` -O2 ` with ` /O2 ` .
@@ -2330,9 +2330,9 @@ This will install Matplot++ on your system:
2330
2330
2331
2331
``` bash
2332
2332
mkdir build
2333
- cmake -version
2333
+ cd build
2334
2334
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=" -O2" -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF
2335
- cmake --build . -j 2 - -config Release
2335
+ cmake --build . --config Release
2336
2336
cmake --install .
2337
2337
```
2338
2338
@@ -2344,9 +2344,9 @@ This will create the binary packages you can use to install Matplot++ on your sy
2344
2344
2345
2345
``` bash
2346
2346
mkdir build
2347
- cmake -version
2347
+ cd build
2348
2348
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=" -O2" -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF
2349
- cmake --build . -j 2 - -config Release
2349
+ cmake --build . --config Release
2350
2350
cmake --install .
2351
2351
cpack .
2352
2352
```
You can’t perform that action at this time.
0 commit comments