diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-08-30 12:00:24 +0200 |
---|---|---|
committer | Herbert Thielen <thielen@hs-worms.de> | 2017-08-30 12:00:24 +0200 |
commit | dae044d4b9869db985f32eeec78889440f646fb7 (patch) | |
tree | fb3e4ac0dc6590e1381c30a73aed69f14ae2baae | |
parent | cc246ecb5675983a879af97b0b466c6d7d64d308 (diff) | |
download | googletest-dae044d4b9869db985f32eeec78889440f646fb7.tar.gz googletest-dae044d4b9869db985f32eeec78889440f646fb7.tar.bz2 googletest-dae044d4b9869db985f32eeec78889440f646fb7.zip |
use upper-case build type
While cmake does not complain on build type 'debug', the cmake
documentation always spells it 'Debug', so take this.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index c155e571..417d2c51 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,8 +36,8 @@ compiler: 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=Debug VERBOSE=1 + - SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=Debug VERBOSE=1 CXX_FLAGS=-std=c++11 notifications: email: false sudo: false |