diff options
author | Antony Woods <acron1@gmail.com> | 2013-10-29 08:36:33 +0000 |
---|---|---|
committer | Antony Woods <acron1@gmail.com> | 2013-10-29 08:36:33 +0000 |
commit | 58cae243738c77acf9b3722804ee96a0f68d7b9a (patch) | |
tree | 745840c77c337251b99b80bc552c8d8245937c73 /scripts/travis.sh | |
parent | 7a42d331bd9cf0e754105d41b42abfa8a625bf86 (diff) |
Fixed a compiler error with std::chrono::duration
Diffstat (limited to 'scripts/travis.sh')
-rwxr-xr-x | scripts/travis.sh | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index b6b7975..98d14a7 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -1,15 +1,15 @@ -#!/bin/bash -e - -CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DENTITYX_BUILD_TESTING=1" - -if [ "$USE_STD_SHARED_PTR" = "1" ]; then - CMAKE_ARGS="${CMAKE_ARGS}" - # This fails on OSX - if [ "$CXX" = "clang++" ]; then - CMAKE_ARGS="${CMAKE_ARGS} -DENTITYX_USE_CPP11_STDLIB=1" - fi -fi - -cmake ${CMAKE_ARGS} -make VERBOSE=1 -make test || cat Testing/Temporary/LastTest.log +#!/bin/bash -e
+
+CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DENTITYX_BUILD_TESTING=1"
+
+if [ "$USE_STD_SHARED_PTR" = "1" ]; then
+ CMAKE_ARGS="${CMAKE_ARGS}"
+ # This fails on OSX
+ if [ "$CXX" = "clang++" ]; then
+ CMAKE_ARGS="${CMAKE_ARGS} -DENTITYX_USE_CPP11_STDLIB=1"
+ fi
+fi
+
+cmake ${CMAKE_ARGS}
+make VERBOSE=1
+make test || cat Testing/Temporary/LastTest.log
|