Created
August 19, 2020 15:36
-
-
Save rotu/0fb27731a6b9661bc16683fe02128bec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX=$PWD/prefix | |
mkdir $PREFIX | |
# Fast-CDR | |
git clone https://github.com/eProsima/Fast-CDR.git | |
mkdir Fast-CDR/build && cd Fast-CDR/build | |
cmake .. -DCMAKE_INSTALL_PREFIX="$PREFIX" -DCMAKE_PREFIX_PATH="$PREFIX" | |
cmake --build . --target install | |
cd ../.. | |
# Foonathan memory | |
git clone https://github.com/eProsima/foonathan_memory_vendor.git | |
cd foonathan_memory_vendor | |
mkdir build && cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX="$PREFIX" -DCMAKE_PREFIX_PATH="$PREFIX" | |
cmake --build . --target install | |
cd ../.. | |
# Fast-DDS | |
git clone https://github.com/eProsima/Fast-DDS.git | |
mkdir Fast-DDS/build && cd Fast-DDS/build | |
cmake .. -DCMAKE_INSTALL_PREFIX="$PREFIX" -DCMAKE_PREFIX_PATH="$PREFIX" | |
cmake --build . --target install | |
cd ../.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment