Disable GTEST_ROOT setting on all CI builds

This commit is contained in:
Jan Möbius
2023-11-29 10:39:41 +01:00
parent bb51d0b98f
commit 01d6ca960d
3 changed files with 3 additions and 18 deletions

View File

@@ -7,14 +7,6 @@ OPTIONS=""
MAKE_OPTIONS=""
BUILDPATH=""
# set GTEST path
if [ -d "$HOME/sw/gtest-1.10.0" ]; then
OPTIONS="-DGTEST_ROOT=$HOME/sw/gtest-1.10.0"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/sw/gtest-1.10.0/lib"
else
OPTIONS="-DGTEST_ROOT=/usr/src/gtest/"
fi
if [ "$COMPILER" == "gcc" ]; then
echo "Building with GCC";
BUILDPATH="gcc"