microRTPS: add option to build the microRTPS agent after its generation

This commit is contained in:
TSC21
2021-06-20 16:33:36 +02:00
committed by Nuno Marques
parent 084a992572
commit 9fb53d4276
4 changed files with 32 additions and 1 deletions

15
Tools/build_micrortps_agent.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -e
SCRIPT_DIR=$0
if [[ ${SCRIPT_DIR:0:1} != '/' ]]; then
SCRIPT_DIR=$(dirname $(realpath -s "$PWD/$0"))
fi
PX4_DIR=$(cd "$(dirname $(dirname $SCRIPT_DIR))" && pwd)
if [ -d $PX4_DIR/build/*_rtps ]; then
cd $PX4_DIR/build/*_rtps/src/modules/micrortps_bridge/micrortps_agent/
cmake -Bbuild
cmake --build build -j$(nproc --all)
fi