fsfw-example-hosted/cmake/scripts/Hosted/make-release-cfg.sh

34 lines
750 B
Bash
Raw Normal View History

2021-06-08 13:37:02 +02:00
#!/bin/sh
counter=0
2021-08-04 17:49:47 +02:00
cfg_script_name="cmake-build-cfg.py"
2021-06-08 13:37:02 +02:00
while [ ${counter} -lt 5 ]
do
2021-08-04 17:49:47 +02:00
if [ -f ${cfg_script_name} ];then
break
fi
counter=$((counter=counter + 1))
cd ..
2021-06-08 13:37:02 +02:00
done
if [ "${counter}" -ge 5 ];then
2021-08-04 17:49:47 +02:00
echo "${cfg_script_name} not found in upper directories!"
exit 1
2021-06-08 13:37:02 +02:00
fi
build_generator=""
os_fsfw="host"
2021-07-19 18:30:24 +02:00
builddir="build-Release"
2021-10-18 18:02:12 +02:00
build_generator="make"
2021-06-08 13:37:02 +02:00
if [ "${OS}" = "Windows_NT" ]; then
2021-07-13 15:50:36 +02:00
python="py"
2021-06-08 13:37:02 +02:00
# Could be other OS but this works for now.
else
2021-07-13 15:50:36 +02:00
python="python3"
2021-06-08 13:37:02 +02:00
fi
echo "Running command (without the leading +):"
set -x # Print command
2021-08-04 17:49:47 +02:00
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "release" -l "${builddir}"
2021-06-08 13:37:02 +02:00
# Use this if commands are added which should not be printed
2021-06-08 17:31:53 +02:00
# set +x