Skip to content
Snippets Groups Projects
Commit 0dde206b authored by “KatrinBistreck”'s avatar “KatrinBistreck”
Browse files

correct python build instructions

parent e3d02cc6
No related branches found
No related tags found
2 merge requests!76Draft: Updated Python code example,!73Initial open source version
Pipeline #1523944 waiting for manual action
......@@ -52,14 +52,14 @@ Now this is the difference to the Cpp tools. The python tools use some of the Cp
=== "Windows"
```sh
cmake --build --preset x64-windows-release -t install_python_package
``` { .sh .copy }
cmake --build --preset x64-windows-release -t install_python_packages
```
=== "MinGW"
```sh
cmake --build --preset x64-mingw-release -t install_python_package
``` { .sh .copy }
cmake --build --preset x64-mingw-release -t install_python_packages
```
!!! tip
......@@ -67,8 +67,8 @@ Now this is the difference to the Cpp tools. The python tools use some of the Cp
=== "Unix"
```sh
cmake --build --preset x64-linux-release -t install_python_package
``` { .sh .copy }
cmake --build --preset x64-linux-release -t install_python_packages
```
!!! tip
......@@ -81,13 +81,13 @@ Same as for Cpp:
=== "Windows"
```sh
``` { .sh .copy }
cmake --build --preset x64-windows-release --target <target>
```
=== "MinGW"
```sh
``` { .sh .copy }
cmake --build --preset x64-mingw-release --target <target>
```
......@@ -96,7 +96,7 @@ Same as for Cpp:
=== "Unix"
```sh
``` { .sh .copy }
cmake --build --preset x64-linux-release --target <target>
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment