Remove c++98 autobuilds and enable c++14

This commit is contained in:
Jan Möbius
2017-02-02 14:02:28 +01:00
parent 57bc372adc
commit bd4b1e6ffd
3 changed files with 15 additions and 7 deletions

View File

@@ -18,6 +18,10 @@ elif [ "$LANGUAGE" == "C++11" ]; then
echo "Building with C++11";
OPTIONS="$OPTIONS -DCMAKE_CXX_FLAGS='-std=c++11' "
BUILDPATH="cpp11"
elif [ "$LANGUAGE" == "C++14" ]; then
echo "Building with C++14";
OPTIONS="$OPTIONS -DCMAKE_CXX_FLAGS='-std=c++14' "
BUILDPATH="cpp14"
fi
#=====================================