From 3afa730751e26d410d292066ca4eebb8d5f19ca4 Mon Sep 17 00:00:00 2001 From: xawotihs Date: Sun, 25 Oct 2015 17:29:33 +0100 Subject: [PATCH] Updated appveyor to use cmake --- appveyor.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index b0a86032a..2635f283f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -32,10 +32,19 @@ install: #---------------------------------# # build Configuration, i.e. Debug, Release, etc. +platform: x64 configuration: Release +# scripts to run before build +before_build: + - echo Running cmake... + - mkdir build + - cd build + - cmake -Dbackend_sdl=ON .. + - cd .. + build: - project: projects/mtg/mtg_vs2010.sln # path to Visual Studio solution or project + project: build/wagic.sln # path to Visual Studio solution or project #---------------------------------# # tests configuration #