Skip to content

Commit

Permalink
dev_utils => cmake_utils + cpp_utils
Browse files Browse the repository at this point in the history
  • Loading branch information
kzangeli committed Sep 11, 2024
1 parent 3919b60 commit 1918df6
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions docker/build-ubi/04.install-fastdds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,18 @@ cmake --build . --target install
# DDS Dev Utils
#
cd /opt/Fast-DDS
git clone https://github.com/eProsima/dev-utils.git
cd dev-utils
git clone https://github.com/eProsima/dev_utils.git
cd dev_utils
git checkout main
mkdir build
cd build

mkdir -p build/cmake_utils
cd build/cmake_utils
cmake ..
cmake --build . --target install

cd -
mkdir -p build/cpp_utils
cd build/cpp_utils
cmake ..
cmake --build . --target install

Expand Down

0 comments on commit 1918df6

Please sign in to comment.