summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dist/travis/script.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/travis/script.sh b/dist/travis/script.sh
index 7d3871b..5f0d5e4 100644
--- a/dist/travis/script.sh
+++ b/dist/travis/script.sh
@@ -29,8 +29,8 @@ case $OS in
mkdir build
cd build
cmake \
- -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_CXX_FLAGS=-g -G 'Unix Makefiles' \
+ -DCMAKE_BUILD_TYPE=Release \
+ -G 'Unix Makefiles' \
..
make VERBOSE=1
make VERBOSE=1 test
@@ -44,8 +44,8 @@ case $OS in
mkdir build
cd build
cmake \
- -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_CXX_FLAGS=-g -G Xcode \
+ -DCMAKE_BUILD_TYPE=Release \
+ -G Xcode \
..
xcodebuild -configuration Release -target ALL_BUILD
xcodebuild -configuration Release -target RUN_TESTS