aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/travis.sh
blob: 0a502cafdb811f147796d41714b6b0946d1e005c (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
make test