From b432fa4f424cb34d2da26f853880e638e758c25e Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Sat, 22 Aug 2015 23:04:12 -0300 Subject: [PATCH] Appveyor: compile using VS 2015 instead of VS 2013. --- extra/appveyor/appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extra/appveyor/appveyor.yml b/extra/appveyor/appveyor.yml index 9f14700d9..fc7c5d7ba 100644 --- a/extra/appveyor/appveyor.yml +++ b/extra/appveyor/appveyor.yml @@ -1,13 +1,13 @@ version: 0.10.0.{build} os: -- Windows Server 2012 R2 +- Visual Studio 2015 shallow_clone: true init: # Make VS 2013 command line tools available -- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %platform% +- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform% install: # We need to install NSIS to create the packaged installer executable. @@ -27,7 +27,7 @@ install: - move love libs\love before_build: -- cmake -G "Visual Studio 12" -H. -Bbuild +- cmake -G "Visual Studio 14" -H. -Bbuild build_script: - cmake --build build --target PACKAGE --config Release