From eb4296d427ce0288b94be1ca3a36261d84744854 Mon Sep 17 00:00:00 2001 From: Vadim Grigoruk Date: Wed, 26 Sep 2018 12:10:17 +0300 Subject: [PATCH] appveyor fix --- appveyor.yml | 8 ++++---- examples/sokol/sokol.c | 4 ---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cc0d256..dfd7184 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,16 +1,16 @@ version: '{build}' -image: Visual Studio 2017 +image: Visual Studio 2015 environment: matrix: - - COMPILER: MSVC15 + - COMPILER: MSVC - COMPILER: MinGW-w64 install: - git submodule update --init --recursive - - if [%COMPILER%]==[MinGW-w64] set PATH=C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH% + - if [%COMPILER%]==[MinGW-w64] set PATH=C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin;%PATH% build_script: - if [%COMPILER%]==[MinGW-w64] cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_SH=CMAKE_SH-NOTFOUND . - - if [%COMPILER%]==[MSVC15] cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=MinSizeRel . + - if [%COMPILER%]==[MSVC] cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=MinSizeRel . - cmake --build . diff --git a/examples/sokol/sokol.c b/examples/sokol/sokol.c index 8cf08bf..2b425e3 100644 --- a/examples/sokol/sokol.c +++ b/examples/sokol/sokol.c @@ -14,10 +14,6 @@ #define AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY 0x08000000 #endif -#ifndef D3D11_STANDARD_MULTISAMPLE_PATTERN -#define D3D11_STANDARD_MULTISAMPLE_PATTERN 0xffffffff -#endif - #endif #include "sokol_app.h"