updated the build_cpputest() shell function
This commit is contained in:
parent
df655e13b0
commit
d79d1ae86f
15
setup.sh
15
setup.sh
|
@ -6,7 +6,7 @@
|
||||||
PKG_MNGR=""
|
PKG_MNGR=""
|
||||||
DEBIAN=0
|
DEBIAN=0
|
||||||
FBSD=0
|
FBSD=0
|
||||||
|
SYSINSTALL=0
|
||||||
DEV_UTILS="vim tmux fzf"
|
DEV_UTILS="vim tmux fzf"
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,10 +58,15 @@ create_project_symlinks () {
|
||||||
|
|
||||||
build_cpputest () {
|
build_cpputest () {
|
||||||
git submodule add https://github.com/cpputest/cpputest.git
|
git submodule add https://github.com/cpputest/cpputest.git
|
||||||
touch build
|
git sumodule status
|
||||||
cd ./build
|
cd ./cpputest/build
|
||||||
make
|
cmake ../
|
||||||
#TODO: finish this function
|
|
||||||
|
if [ SYSINSTALL -eq 1]; then
|
||||||
|
make install
|
||||||
|
else
|
||||||
|
make
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue