Skip to content

Commit

Permalink
Adding FIWARE-DDS-Enabler to base image
Browse files Browse the repository at this point in the history
  • Loading branch information
kzangeli committed Sep 16, 2024
1 parent 944395b commit 3240422
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docker/build-ubi/04.install-fastdds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,29 @@ mkdir build
cd build
cmake ..
cmake --build . --target install


#
# DDS Enabler
#
cd /opt/Fast-DDS
git clone https://github.com/eProsima/FIWARE-DDS-Enabler.git
cd FIWARE-DDS-Enabler

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
cd ../..

0 comments on commit 3240422

Please sign in to comment.