fsfw-example-stm32h7-freertos/cmake/scripts/stm32h7-make-debug.sh

34 lines
741 B
Bash
Raw Normal View History

2021-07-12 21:15:38 +02:00
#!/bin/sh
counter=0
2021-08-02 20:23:16 +02:00
cfg_script_name="cmake-build-cfg.py"
2021-07-12 21:15:38 +02:00
while [ ${counter} -lt 5 ]
do
2021-08-02 20:23:16 +02:00
if [ -f ${cfg_script_name} ];then
break
fi
counter=$((counter=counter + 1))
cd ..
2021-07-12 21:15:38 +02:00
done
if [ "${counter}" -ge 5 ];then
2021-08-02 20:23:16 +02:00
echo "${cfg_script_name} not found in upper directories!"
exit 1
2021-07-12 21:15:38 +02:00
fi
build_generator=""
2021-07-13 11:04:31 +02:00
os_fsfw="freertos"
2022-05-22 15:23:25 +02:00
builddir="cmake-build-debug"
2021-07-12 21:15:38 +02:00
if [ "${OS}" = "Windows_NT" ]; then
build_generator="MinGW Makefiles"
2021-07-13 11:04:31 +02:00
python="py"
2021-07-12 21:15:38 +02:00
# Could be other OS but this works for now.
else
build_generator="Unix Makefiles"
2021-07-13 11:04:31 +02:00
python="python3"
2021-07-12 21:15:38 +02:00
fi
echo "Running command (without the leading +):"
set -x # Print command
2021-08-02 20:22:12 +02:00
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "debug" -l "${builddir}"
# set +x