aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2013-04-01 11:51:29 -0400
committerAlec Thomas <alec@swapoff.org>2013-04-03 22:45:17 -0400
commit17725f8f24460ca6189afd106df3ad122a5777c3 (patch)
treee675b1bd3a7d48163bece5f35f0463ef6388d436 /scripts
parent93d3770b874ad010523f4e6bb675f680de4b9fdf (diff)
All Manager classes are now managed by smart pointers.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh
index 9d06fa6..0a502ca 100755
--- a/scripts/travis.sh
+++ b/scripts/travis.sh
@@ -1,12 +1,12 @@
#!/bin/bash -e
-CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=1"
+CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DENTITYX_BUILD_TESTING=1"
if [ "$USE_STD_SHARED_PTR" = "1" ]; then
- CMAKE_ARGS="${CMAKE_ARGS} -DUSE_STD_SHARED_PTR=1"
+ CMAKE_ARGS="${CMAKE_ARGS} -DENTITYX_USE_STD_SHARED_PTR=1"
# This fails on OSX
if [ "$CXX" = "clang++" ]; then
- CMAKE_ARGS="${CMAKE_ARGS} -DUSE_CPP11_STDLIB=1"
+ CMAKE_ARGS="${CMAKE_ARGS} -DENTITYX_USE_CPP11_STDLIB=1"
fi
fi