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

33 lines
680 B
Bash
Raw Normal View History

2021-07-12 21:15:38 +02:00
#!/bin/sh
counter=0
while [ ${counter} -lt 5 ]
do
if [ -f "cmake_build_config.py" ];then
break
fi
counter=$((counter=counter + 1))
2021-07-13 11:04:31 +02:00
cd ..
2021-07-12 21:15:38 +02:00
done
if [ "${counter}" -ge 5 ];then
echo "create_cmake_cfg.sh not found in upper directories!"
exit 1
fi
build_generator=""
2021-07-13 11:04:31 +02:00
os_fsfw="freertos"
builddir="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