diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-08-30 21:25:34 +0200 |
---|---|---|
committer | Herbert Thielen <thielen@hs-worms.de> | 2017-09-01 21:55:11 +0200 |
commit | d15b8b4524063e065263316e67e74a47f7dc4af2 (patch) | |
tree | 9ec9092b58fae5476e2b64351dc5e848cee8621d | |
parent | 7c6353d29a147cad1c904bf2957fd4ca2befe135 (diff) | |
download | googletest-d15b8b4524063e065263316e67e74a47f7dc4af2.tar.gz googletest-d15b8b4524063e065263316e67e74a47f7dc4af2.tar.bz2 googletest-d15b8b4524063e065263316e67e74a47f7dc4af2.zip |
switch one build to Release mode
This turns on optimization which allows the compiler to discover more
problems and omit some more warnings.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 417d2c51..81692dd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ script: ./travis.sh env: matrix: - SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=Debug VERBOSE=1 - - SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=Debug VERBOSE=1 CXX_FLAGS=-std=c++11 + - SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11 notifications: email: false sudo: false |