Fix travis CXXSTD

This commit is contained in:
Simon Brand
2019-03-11 13:26:08 +00:00
parent 5b58506abd
commit 34bc5a0af9

View File

@@ -254,4 +254,4 @@ install:
- if [ "$CXX" = "clang++" ]; then export CXX="$COMPILER -stdlib=libc++"; fi
- if [ "$CXX" = "g++" ]; then export CXX="$COMPILER"; fi
script: mkdir build && cd build && cmake .. && make && ./tests
script: mkdir build && cd build && cmake -DCXXSTD=$CXXSTD .. && make && ./tests