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

43 lines
997 B
Bash
Raw Normal View History

2021-07-12 21:15:38 +02:00
#!/bin/sh
counter=0
2022-05-22 16:43:47 +02:00
init_dir=$(pwd)
2021-08-02 20:23:16 +02:00
cfg_script_name="cmake-build-cfg.py"
2022-05-22 16:43:47 +02:00
cfg_script=""
if [ ! -z ${REPO_ROOT} ]; then
cfg_script=${REPO_ROOT}/cmake/${cfg_script_name}
else
while [ ${counter} -lt 5 ]
do
if [ -f ${cfg_script_name} ];then
cfg_script=$(pwd)/${cfg_script_name}
break
fi
counter=$((counter=counter + 1))
cd ..
done
2021-07-12 21:15:38 +02:00
2022-05-22 16:43:47 +02:00
if [ "${counter}" -ge 5 ];then
echo "${cfg_script_name} not found in upper directories!"
cd ${init_dir}
exit 1
fi
cd ${init_dir}
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
2022-05-22 16:43:47 +02:00
${python} ${cfg_script} -o "${os_fsfw}" -g "${build_generator}" -b "debug" -l "${builddir}"
2021-08-02 20:22:12 +02:00
# set +x