From ab2e682e1e80b001c760851382ee28b9a5a94849 Mon Sep 17 00:00:00 2001
From: Roman Telezhynskyi <kroluku@gmail.com>
Date: Tue, 3 Jan 2017 16:21:54 +0200
Subject: [PATCH] AppVeyour. Generate debug symbols only when deploy.

Think it will help avoid hosting limitations.

--HG--
branch : develop
---
 appveyor.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/appveyor.yml b/appveyor.yml
index e6d1b61a1..71c3b5156 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -168,7 +168,7 @@ before_build:
 # to run your custom scripts instead of automatic MSBuild
 build_script:
   - cd build
-  - qmake ..\Valentina.pro -r CONFIG+=no_ccache CONFIG+=checkWarnings
+  - if %DEPLOY% == "true" (qmake ..\Valentina.pro -r CONFIG+=no_ccache CONFIG+=checkWarnings) else (qmake ..\Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings)
   - if not "%QMAKE_GENERATOR%" == "MinGW Makefiles" (nmake -s) else (mingw32-make -j%NUMBER_OF_PROCESSORS%)
 
 # to run your custom scripts instead of automatic tests