Skip to content

Commit

Permalink
Minor changes to ROS 2 project configuration manual. (#2556)
Browse files Browse the repository at this point in the history
* Minor changes to ROS 2 project configuration manual.
* Update project-configuration.md - change upcoming version number (24.09)
---------

Signed-off-by: Michał Pełka <michal.pelka@robotec.ai>
  • Loading branch information
michalpelka committed May 16, 2024
1 parent 3af2592 commit 6a8c4ee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ For convenience, here is an example of parametrized CMake calls:

```shell
cd $PROJECT_PATH
cmake -B build/linux -G "Ninja Multi-Config" -DLY_DISABLE_TEST_MODULES=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLY_STRIP_DEBUG_SYMBOLS=ON -DAZ_USE_PHYSX5:BOOL=ON
cmake -B build/linux -G "Ninja Multi-Config" -DLY_DISABLE_TEST_MODULES=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLY_STRIP_DEBUG_SYMBOLS=ON
cmake --build build/linux --config profile --target ${PROJECT_NAME} Editor ${PROJECT_NAME}.Assets
```
{{<note>}}
Before version 24.10, PhysX 5 was experimental and compiled during the engine's source code compilation process.
If you're utilizing version 23.10.2 or an earlier release, you'll need to specify an additional flag: `-DAZ_USE_PHYSX5:BOOL=ON`.
Before version 24.09, PhysX 5 was experimental and compiled during the engine's source code compilation process.
If you're utilizing version 23.10.3 or an earlier release, you'll need to specify an additional flag: `-DAZ_USE_PHYSX5:BOOL=ON` :
```shell
cmake -B build/linux -G "Ninja Multi-Config" -DLY_DISABLE_TEST_MODULES=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLY_STRIP_DEBUG_SYMBOLS=ON -DAZ_USE_PHYSX5:BOOL=ON
```
Expand Down

0 comments on commit 6a8c4ee

Please sign in to comment.