Michele Caini 8 лет назад
Родитель
Сommit
87a1062bde
2 измененных файлов с 1 добавлено и 7 удалено
  1. 0 1
      appveyor.yml
  2. 1 6
      deps.bat

+ 0 - 1
appveyor.yml

@@ -8,7 +8,6 @@ environment:
 
 platform:
   - Win32
-  - x64
 
 configuration:
   - Release

+ 1 - 6
deps.bat

@@ -2,7 +2,6 @@
 set SRC_DIR=%~dp0
 
 if not defined ARCH set ARCH=x86
-if defined platform if "%platform%"=="x64" set ARCH=x64
 
 @rem init/update submodules
 cd %SRC_DIR%
@@ -10,11 +9,7 @@ git submodule update --init
 
 @rem compile dependencies
 
-if "%msbuild_platform%"=="x64" (
-    set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64
-) else (
-    set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
-)
+set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
 
 set GTEST_BUILD_DIR=%SRC_DIR%deps\googletest\build
 if exist %GTEST_BUILD_DIR%\NUL rd /s /q %GTEST_BUILD_DIR%