Skip to content

Commit 97559d6

Browse files
committed
Update Docs
1 parent ba5d1c7 commit 97559d6

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

docs/coding-styles/common-utilities.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ The headers `common.h` and `colors.h` include a number of utilities we use in ou
1313

1414

1515

16+
1617
<!-- Generated with mdsplit: https://github.com/alandefreitas/mdsplit -->

docs/contributing/contributors.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ has_toc: false
3333
</a>
3434
</td>
3535
<td align="center">
36-
<a href="https://github.com/xnorpx">
37-
<img src="https://avatars2.githubusercontent.com/u/302709?v=4" width="100;" alt="xnorpx"/>
36+
<a href="https://github.com/actions-user">
37+
<img src="https://avatars1.githubusercontent.com/u/65916846?v=4" width="100;" alt="actions-user"/>
3838
<br />
39-
<sub><b>Marcus Asteborg</b></sub>
39+
<sub><b>Actions-user</b></sub>
4040
</a>
4141
</td>
4242
<td align="center">
43-
<a href="https://github.com/actions-user">
44-
<img src="https://avatars1.githubusercontent.com/u/65916846?v=4" width="100;" alt="actions-user"/>
43+
<a href="https://github.com/xnorpx">
44+
<img src="https://avatars2.githubusercontent.com/u/302709?v=4" width="100;" alt="xnorpx"/>
4545
<br />
46-
<sub><b>Actions-user</b></sub>
46+
<sub><b>Marcus Asteborg</b></sub>
4747
</a>
4848
</td>
4949
<td align="center">

docs/integration/binary-packages.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Get the binary package from the [release section](https://github.com/alandefreit
1212

1313
If you need a more recent version of Matplot++, you can download the [binary packages from the CI artifacts](https://github.com/alandefreitas/matplotplusplus/actions?query=workflow%3AMatplotplusplus+event%3Apush) or build the library [from the source files](build-from-source.md).
1414

15-
Once the package is installed, you can link your C++ program to the library and include the directories where you installed Matplot++. Unless you changed the default options, the library is likely to be in `/usr/local/` (Linux / Mac OS) or `C:/Program Files/` (Windows). The installer will try to find the directory where you usually keep your libraries but that's not always perfect.
15+
Once the package is installed, you can link your C++ program to the library and include the directories where you installed Matplot++. Unless you changed the default options, the library is likely to be in `/usr/local/` (Linux / Mac OS) or `C:/Program Files/` (Windows). The installer will try to find the directory where you usually keep your libraries but that's not always perfect.
1616

1717
If you are using CMake, you can then find Matplot++ with the usual `find_package` command:
1818

@@ -22,7 +22,9 @@ find_package(Matplot++ REQUIRED)
2222
target_link_libraries(my_target PUBLIC Matplot++::matplot)
2323
```
2424

25-
CMake should be able to locate the `matplot++-config.cmake` script automatically if you installed the library under `/usr/local/` (Linux / Mac OS) or `C:/Program Files/` (Windows). Otherwise, you need to include your installation directory in `CMAKE_MODULE_PATH` first:
25+
You can see a complete example in [`test/integration/CMakeLists.txt`](https://github.com/alandefreitas/matplotplusplus/blob/master/test/integration/CMakeLists.txt).
26+
27+
CMake should be able to locate the `matplot++-config.cmake` script automatically if you installed the library under `/usr/local/` (Linux / Mac OS) or `C:/Program Files/` (Windows). Otherwise, if the library is under another directory, like `C:/Program Files (x86)` or `C:/Program Files (x86)/`, you need to include your installation directory in `CMAKE_MODULE_PATH` first:
2628

2729
```cmake
2830
list(APPEND CMAKE_MODULE_PATH put/your/installation/directory/here)

0 commit comments

Comments
 (0)