2021-07-12 21:15:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
counter=0
|
2021-08-02 20:22:12 +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:22:12 +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:22:12 +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"
|
2021-07-12 21:15:38 +02:00
|
|
|
builddir="build-Release"
|
|
|
|
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 "size" -l "${builddir}"
|
2021-07-13 11:04:31 +02:00
|
|
|
# set +x
|