updated shell scripts

This commit is contained in:
Robin Müller 2021-07-14 16:22:53 +02:00
parent 86b3d7f2b5
commit 470fe2ca88
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
5 changed files with 63 additions and 9 deletions

View File

@ -17,14 +17,18 @@ fi
os_fsfw="linux"
tgt_bsp="arm/raspberrypi"
build_generator=""
builddir="build-Debug-RPi"
builddir="build-Debug"
defines="LINUX_CROSS_COMPILE=OFF"
if [ "${OS}" = "Windows_NT" ]; then
build_generator="MinGW Makefiles"
python="py"
# Could be other OS but this works for now.
else
build_generator="Unix Makefiles"
python="python3"
fi
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
echo "Running command (without the leading +):"
set -x # Print command
${python} cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
-l "${builddir}" -d "${defines}"
# set +x

View File

@ -17,14 +17,19 @@ fi
os_fsfw="linux"
tgt_bsp="arm/raspberrypi"
build_generator=""
builddir="build-Debug-RPi"
builddir="build-Debug"
defines="LINUX_CROSS_COMPILE=ON"
if [ "${OS}" = "Windows_NT" ]; then
build_generator="MinGW Makefiles"
python="py"
# Could be other OS but this works for now.
else
build_generator="Unix Makefiles"
python="python3"
fi
echo "Running command (without the leading +):"
set -x # Print command
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
-l "${builddir}" -d "${defines}"
# set +x

View File

@ -17,14 +17,19 @@ fi
os_fsfw="linux"
tgt_bsp="arm/raspberrypi"
build_generator=""
builddir="build-Release-RPi"
builddir="build-Release"
defines="LINUX_CROSS_COMPILE=ON"
if [ "${OS}" = "Windows_NT" ]; then
build_generator="MinGW Makefiles"
python="py"
# Could be other OS but this works for now.
else
build_generator="Unix Makefiles"
python="python3"
fi
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
echo "Running command (without the leading +):"
set -x # Print command
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "release" -t "${tgt_bsp}" \
-l "${builddir}" -d "${defines}"
# set +x

View File

@ -17,14 +17,19 @@ fi
os_fsfw="linux"
tgt_bsp="arm/raspberrypi"
build_generator=""
builddir="build-Release-RPi"
builddir="build-Debug"
defines="LINUX_CROSS_COMPILE=ON"
build_generator="Ninja"
if [ "${OS}" = "Windows_NT" ]; then
build_generator="MinGW Makefiles"
python="py"
# Could be other OS but this works for now.
else
build_generator="Unix Makefiles"
python="python3"
fi
echo "Running command (without the leading +):"
set -x # Print command
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
-l "${builddir}" -d "${defines}"
# set +x

View File

@ -0,0 +1,35 @@
#!/bin/sh
counter=0
while [ ${counter} -lt 5 ]
do
cd ..
if [ -f "cmake_build_config.py" ];then
break
fi
counter=$((counter=counter + 1))
done
if [ "${counter}" -ge 5 ];then
echo "cmake_build_config.py not found in upper directories!"
exit 1
fi
os_fsfw="linux"
tgt_bsp="arm/raspberrypi"
build_generator=""
builddir="build-Release"
defines="LINUX_CROSS_COMPILE=ON"
build_generator="Ninja"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.
else
python="python3"
fi
echo "Running command (without the leading +):"
set -x # Print command
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "release" -t "${tgt_bsp}" \
-l "${builddir}" -d "${defines}"
# set +x