both firmware and test are build and run using Makefile

This commit is contained in:
Attila Body 2019-12-13 14:43:40 +01:00
parent 6b628e9412
commit fd24d10fb7
346 changed files with 141567 additions and 28 deletions

View file

@ -0,0 +1,11 @@
#!/bin/sh
#set -x
OUTPATH="$1"
SCRIPTDIR=$(dirname "$0")
if [ ! -d "$SCRIPTDIR"/googletest/"$OUTPATH" ] ; then
cd "$SCRIPTDIR"/googletest
cmake -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_INSTALL_PREFIX:PATH="$OUTPATH"
make -j8 && make install
rm install_manifest.txt
cd ..
fi