Skip to content

Commit e01425f

Browse files
committed
Update Docs
1 parent e1e3872 commit e01425f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docs/integration/build-from-source/build-the-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This will build the examples in the `build/examples` directory:
1313

1414
```bash
1515
mkdir build
16-
cmake -version
16+
cd build
1717
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-O2"
1818
cmake --build . -j 2 --config Release
1919
```

docs/integration/build-from-source/building-the-packages.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This will create the binary packages you can use to install Matplot++ on your sy
1313

1414
```bash
1515
mkdir build
16-
cmake -version
16+
cd build
1717
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-O2" -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF
1818
cmake --build . -j 2 --config Release
1919
cmake --install .
@@ -25,4 +25,6 @@ On windows, replace `-O2` with `/O2`. You might need `sudo` for this last comman
2525

2626

2727

28+
29+
2830
<!-- Generated with mdsplit: https://github.com/alandefreitas/mdsplit -->

docs/integration/build-from-source/installing-matplot-from-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This will install Matplot++ on your system:
1313

1414
```bash
1515
mkdir build
16-
cmake -version
16+
cd build
1717
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-O2" -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF
1818
cmake --build . -j 2 --config Release
1919
cmake --install .

0 commit comments

Comments
 (0)