From 80e55ebfb7f2fcc5d7b741c489b8dda1fc7c7950 Mon Sep 17 00:00:00 2001 From: Graham Pentheny Date: Sat, 29 Oct 2022 23:27:41 -0400 Subject: [PATCH] Update to a newer premake version that supports vs2019 and vs2022 --- appveyor.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6459e1c..58dde76 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,7 +24,7 @@ platform: install: # Download Premake - - ps: Start-FileDownload 'https://github.com/premake/premake-core/releases/download/v5.0.0-alpha12/premake-5.0.0-alpha12-windows.zip' 'premake.zip' + - ps: Start-FileDownload 'https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-windows.zip' 'premake.zip' # Extract it in-place; premake5.exe is at the top level. - 7z x premake.zip @@ -38,7 +38,6 @@ install: # Generate solution files using premake. - cd RecastDemo && "../premake5.exe" %PREMAKE_ACTION% && cd .. - build: project: RecastDemo/Build/$(PREMAKE_ACTION)/recastnavigation.sln