Skip to content

Commit b3828ae

Browse files
committed
Working set of compilation instructions
1 parent 244d7d5 commit b3828ae

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The **Simple-mpc** library provides:
2020
```bash
2121
mkdir -p simple-mpc_ws/src
2222
cd simple-mpc_ws/src
23-
git clone [email protected]:edantec/simple-mpc.git --recursive
23+
git clone [email protected]:Simple-Robotics/simple-mpc.git --recursive
2424
```
2525

2626
2. Create conda environment.
@@ -37,11 +37,11 @@ mamba activate simple-mpc-devel
3737
vcs import --recursive < simple-mpc/devel-git-deps.yaml
3838
```
3939

40-
4. Build all packages
40+
4. Build all dependencies of simple-mpc:
4141
```bash
4242
export MAKEFLAGS="-j4" # It is recommended to reduce the number of jobs as you ram might get full easily with the default number.
4343
cd ..
44-
colcon build --event-handlers console_direct+ --cmake-args \
44+
colcon build --event-handlers console_direct+ --packages-ignore simple-mpc --cmake-args \
4545
-DCMAKE_BUILD_TYPE=Release \
4646
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
4747
-DPYTHON_EXECUTABLE=$(which python) \
@@ -52,7 +52,8 @@ colcon build --event-handlers console_direct+ --cmake-args \
5252
-DBUILD_BENCHMARK=OFF \
5353
-DBUILD_BENCHMARKS=OFF \
5454
-DBUILD_WITH_COLLISION_SUPPORT=ON \
55-
-DGENERATE_PYTHON_STUBS=OFF
55+
-DGENERATE_PYTHON_STUBS=OFF \
56+
-DCOAL_BACKWARD_COMPATIBILITY_WITH_HPP_FCL=ON
5657
```
5758

5859
5. Source the environment

0 commit comments

Comments
 (0)