Skip to content

Commit

Permalink
Not using the ddsenabler install script as it has no error checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kzangeli committed Oct 7, 2024
1 parent 477c4f3 commit ce60683
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions docker/build-ubi/04.install-fastdds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,21 @@ git fetch -a
git checkout feature/typed_tests
yum -y install lz4-devel libzstd-devel

./install_dds_module.sh
ln -s /usr/local/include/ddsenabler /opt/Fast-DDS/FIWARE-DDS-Enabler/ddsenabler/include/ddsenabler
# ./install_dds_module.sh

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

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

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

0 comments on commit ce60683

Please sign in to comment.