Skip to content

Commit

Permalink
Merge pull request #725 from AntaresSimulatorTeam/update_build_doc
Browse files Browse the repository at this point in the history
Update Build doc to include --target install command
  • Loading branch information
ianmnz authored Dec 11, 2023
2 parents 9eaff46 + a9bcc23 commit cbda47e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/developer-guide/install_from_sources/3-Build.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ Additionnal options for Xpress use:
=== "Windows"

```
cmake --build _build --config Release -j8
cmake --build _build --config Release -j8 --target install
```
=== "Centos"

```
cmake3 --build _build --config Release -j8
cmake3 --build _build --config Release -j8 --target install
```
=== "Ubuntu"

```
cmake --build _build --config Release -j8
cmake --build _build --config Release -j8 --target install
```
!!! Note
Compilation can be done on several processor with the `-j` option.

0 comments on commit cbda47e

Please sign in to comment.