From 143864280dbb6ccd9110e779806a54828ffdca48 Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Mon, 29 Jun 2020 00:49:15 -0700 Subject: [PATCH] appveyor: Add vcpkg integration. --- appveyor.yml | 3 ++- setup.ps1 | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 58c00613..229e699e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,6 +26,7 @@ install: build_script: # Ensure vcpkg dependencies are installed - ps: | + vcpkg integrate install vcpkg install openxr-loader:x64-windows glfw3:x64-windows-static glfw3:x86-windows-static # build Revive - ps: | @@ -44,7 +45,7 @@ after_build: # gather built Revive files - cmd: | cd c:\projects\Revive\Release - 7z a Revive.zip ReviveInjector.exe LibRevive32.dll LibRevive64.dll LibRXRRT64.dll openxr_loader-1_0.dll + 7z a Revive.zip ReviveInjector.exe LibRevive32.dll LibRevive64.dll LibRXRRT64.dll openxr_loader.dll # Run NSIS to generate installer - ps: | cd c:\projects\Revive\Installer diff --git a/setup.ps1 b/setup.ps1 index f9c3b77b..5ae22c84 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -54,6 +54,7 @@ catch Write-Host "MSBuild found" # Ensure vcpkg dependencies are installed +vcpkg integrate install vcpkg install openxr-loader:x64-windows glfw3:x64-windows-static glfw3:x86-windows-static # Build Revive a la carte