aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/travis.sh
blob: dadc478d33b9eaf189b3459d238c0609ad74132e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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} -DENTITYX_USE_STD_SHARED_PTR=1"
  # 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