summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Schuchardt <mikes@lunarg.com>2018-01-03 10:48:34 -0700
committerMike Schuchardt <mikes@lunarg.com>2018-01-03 20:57:37 -0700
commit71fc7d676617240effa284a6a248248b39806367 (patch)
treee7313e082d38033fb3e5c44e64c23b6284854657
parent06be5bf906ff81715bcc2cd999b54c8929c25ab7 (diff)
downloadVulkan-Loader-71fc7d676617240effa284a6a248248b39806367.tar.gz
Vulkan-Loader-71fc7d676617240effa284a6a248248b39806367.tar.bz2
Vulkan-Loader-71fc7d676617240effa284a6a248248b39806367.zip
build: Retarget AppVeyor build to VS2013
Change-Id: I88665dadbac75695034a731412984edbecbf988f
-rw-r--r--.appveyor.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index ba7aa999..65b00cb0 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -12,7 +12,7 @@ version: "{build}"
max_jobs: 4
os:
- - Visual Studio 2015
+ - Visual Studio 2013
environment:
PYTHON_PATH: "C:/Python35"
@@ -72,7 +72,7 @@ before_build:
- cd %GLSLANG_DIR%
- if not exist build (mkdir build)
- cd build
- - cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=install ..
+ - cmake -G "Visual Studio 12 2013 Win64" -DCMAKE_INSTALL_PREFIX=install ..
- msbuild INSTALL.vcxproj /p:Platform=x64 /p:Configuration=Release /verbosity:quiet
# Build the x64 debug version if selected.
- if %PLATFORM% == x64 (if %CONFIGURATION% == Debug (msbuild INSTALL.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet))
@@ -80,13 +80,13 @@ before_build:
- cd %GLSLANG_DIR%
- if not exist build32 (mkdir build32)
- cd build32
- - if %PLATFORM% == Win32 (cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=install ..)
+ - if %PLATFORM% == Win32 (cmake -G "Visual Studio 12 2013" -DCMAKE_INSTALL_PREFIX=install ..)
- if %PLATFORM% == Win32 (msbuild INSTALL.vcxproj /p:Platform=x86 /p:Configuration=%CONFIGURATION% /verbosity:quiet)
# Generate build files using CMake for the build step.
- echo.
- echo Starting build for %APPVEYOR_REPO_NAME%
- - if %PLATFORM% == Win32 (set GENERATOR="Visual Studio 14 2015")
- - if %PLATFORM% == x64 (set GENERATOR="Visual Studio 14 2015 Win64")
+ - if %PLATFORM% == Win32 (set GENERATOR="Visual Studio 12 2013")
+ - if %PLATFORM% == x64 (set GENERATOR="Visual Studio 12 2013 Win64")
- cd %TOP_DIR%
- mkdir build
- cd build