Skip to content

Commit

Permalink
iox-eclipse-iceoryx#533 Add Installation guide after building.
Browse files Browse the repository at this point in the history
Signed-off-by: Fanjun Kong <bh1scw@gmail.com>
  • Loading branch information
BH1SCW committed Feb 1, 2021
1 parent f7fee3c commit 77c045b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions doc/website/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ The `CMakeLists.txt` from `iceoryx_meta` can be used to easily develop iceoryx w
Tip: You can fasten up the build by appending `-j 4` where 4 stands for the number of parallel build processes.
You can choose more or less depending on your available CPU cores on your machine.

4. Install to system
Mac:
```bash
cmake --build build --target install
```
Linux:
```bash
sudo cmake --build build --target install
```
Tip: The installation directory is usually left at its default, which is /usr/local
**NOTE:** Iceoryx is build in Release mode with `-O3` optimization by default. If you want to have debug symbols please
set `CMAKE_BUILD_TYPE=Debug`.

Expand Down

0 comments on commit 77c045b

Please sign in to comment.