From 91ca733b8d4ffb226e62a5a3dcfcb94760dca04b Mon Sep 17 00:00:00 2001 From: Luis Diaz Mas Date: Tue, 22 Aug 2017 14:23:13 +0200 Subject: [PATCH] Add a new configuration to compile the project in Debug mode (Travis) --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ab8ba96e..ae0f3a4a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,11 +11,11 @@ os: - osx env: - - CMAKE_OPTIONS="" # Default - - CMAKE_OPTIONS="-DEXIV2_ENABLE_VIDEO=ON -DEXIV2_ENABLE_WEBREADY=ON" # All enabled - - CMAKE_OPTIONS="-DEXIV2_ENABLE_XMP=OFF -DEXIV2_ENABLE_NLS=OFF -DEXIV2_ENABLE_LENSDATA=OFF" # All disabled - - CMAKE_OPTIONS="-DEXIV2_ENABLE_WEBREADY=ON -DEXIV2_ENABLE_CURL=OFF -DEXIV2_ENABLE_SSH=OFF" # WebReady without SSH nor CURL - + - CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Release" # Default + - CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Debug" # Default (Debug mode) + - CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Release -DEXIV2_ENABLE_VIDEO=ON -DEXIV2_ENABLE_WEBREADY=ON" # All enabled + - CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Release -DEXIV2_ENABLE_XMP=OFF -DEXIV2_ENABLE_NLS=OFF -DEXIV2_ENABLE_LENSDATA=OFF" # All disabled + - CMAKE_OPTIONS="-DCMAKE_BUILD_TYPE=Release -DEXIV2_ENABLE_WEBREADY=ON -DEXIV2_ENABLE_CURL=OFF -DEXIV2_ENABLE_SSH=OFF" # WebReady without SSH nor CURL install: ./.travis/install.sh script: ./.travis/run.sh