https://git.reactos.org/?p=reactos.git;a=commitdiff;h=127d41715f477047f9dda…
commit 127d41715f477047f9dda5943796c5ab09eb566d
Author: Amine Khaldi <amine.khaldi(a)reactos.org>
AuthorDate: Tue Apr 3 13:16:09 2018 +0100
Commit: Amine Khaldi <amine.khaldi(a)reactos.org>
CommitDate: Tue Apr 3 13:16:36 2018 +0100
[APPVEYOR] Add the MSVC x64 build. Dedicated to Timo.
---
appveyor.yml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index caf0f951ac..f404f7912c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,7 +1,8 @@
environment:
matrix:
- - BuildType: "clang-cl"
- BuildType: "msvc"
+ - BuildType: "msvc-x64"
+ - BuildType: "clang-cl"
version: reactos.appveyor.{build}
skip_branch_with_pr: true
@@ -22,7 +23,11 @@ init:
build_script:
- set PATH=C:\RosCMakeNinja\bin;%PATH%
- - call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
x86
+ - if "%BuildType%" == "msvc-x64" (
+ call "C:\PROGRA~2\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
+ ) else (
+ call "C:\Program Files (x86)\Microsoft Visual Studio
10.0\VC\vcvarsall.bat" x86
+ )
- cmake --version
- md c:\ros_build
- cd c:\ros_build