From f114934ad1fc84f27c2c7c2685a7ba147ecb3fde Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sun, 26 Jul 2020 23:14:06 -0400 Subject: [PATCH 1/2] Add PhysX 4.1. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 896f43b..5196d09 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,7 +11,7 @@ build_script: bootstrap-vcpkg.bat if ($lastExitCode -ne 0) { throw "Failed to update vcpkg" } vcpkg install curl[sspi] expat freetype libjpeg-turbo libogg libpng ` - libvorbis libvpx openal-soft openssl opus pcre python2 python3 ` + libvorbis libvpx openal-soft openssl opus pcre physx python2 python3 ` speex string-theory zlib --triplet x86-windows-static-md if ($lastExitCode -ne 0) { throw "Failed to build static libs" } From ebec1522b1476d19255b2a5f11fac8c2fdc3e7a6 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sun, 30 Aug 2020 06:24:16 -0400 Subject: [PATCH 2/2] Fix vcpkg path to work around `vcpkg_fixup_pkgconfig()` bug. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 5196d09..27aee19 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ build_script: - ps: | $outpath = (Get-Location).Path - Set-Location C:\tools\vcpkg + Set-Location C:\Tools\vcpkg git pull 2> $null bootstrap-vcpkg.bat if ($lastExitCode -ne 0) { throw "Failed to update vcpkg" }