summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-06-26 14:30:46 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-06-26 14:30:46 +0200
commit6027bfe9ad1cb07a4df46af0bfefcb60a230fbb1 (patch)
treeec47e5500da94ad64edb4046b282411acad4c711
parentbe6ea346ef98ea36787369ec67ee522ba5fc2513 (diff)
downloadATCD-6027bfe9ad1cb07a4df46af0bfefcb60a230fbb1.tar.gz
Make use of VCPKG_ROOT
-rw-r--r--azure-pipelines.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index b84df38f814..ddca4e85fa4 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -190,11 +190,12 @@ jobs:
SSL_ROOT: $(Build.SourcesDirectory)\vcpkg\packages\openssl-windows_$(vcpkgarch)
SSL_LIBDIR: $(SSL_ROOT)\$(vcpkglibdir)
XERCESC_LIBDIR: $(XERCESCROOT)\$(vcpkglibdir)
+ VCPKG_ROOT: $(Build.SourcesDirectory)\vcpkg
steps:
- powershell: |
- git clone --depth 1 git://github.com/Microsoft/vcpkg.git $(Build.SourcesDirectory)\vcpkg
- .\vcpkg\bootstrap-vcpkg.bat
- .\vcpkg\vcpkg.exe install --recurse --triplet $(vcpkgarch) openssl xerces-c
+ git clone --depth 1 git://github.com/Microsoft/vcpkg.git $(VCPKG_ROOT)
+ $(VCPKG_ROOT)\bootstrap-vcpkg.bat
+ $(VCPKG_ROOT)\vcpkg.exe install --recurse --triplet $(vcpkgarch) openssl xerces-c
displayName: vcpkg
- powershell: |
'#include "ace/config-win32.h"' > $(ACE_ROOT)/ace/config.h