From 854b82044d1cdf356bbfd0b19290a44ad27df6eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 21 Aug 2019 23:47:52 +0200 Subject: [PATCH] Use += when setting external defines we don't want to override anything --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 35bbd695..02f4a3b0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -74,7 +74,7 @@ jobs: - script: | call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat" set PATH=%PATH%;C:\Qt\Qt5.12.4\5.12.4\msvc2017_64\bin - set DEFINES_VAR=DEFINES="BUILD_NUMBER=\\\\\\\"$(build_number)\\\\\\\"" + set DEFINES_VAR=DEFINES+="BUILD_NUMBER=\\\\\\\"$(build_number)\\\\\\\"" qmake CONFIG+="7zip" %DEFINES_VAR% nmake displayName: 'Build'