Skip to content
Snippets Groups Projects
Forked from Sven M. Hallberg / hammer
361 commits behind the upstream repository.
  • Nicolas Léveillé's avatar
    Remove now unneeded workaround · a02045b4
    Nicolas Léveillé authored
    The workaround would now cause build failures in Appveyor as seem to
    have pre-emptively applied it to their environments.
    
    I'm not too happy about their handling of the issue. Seems fiddly.
    
    Anyway this commit is now required to build on Appveyor.
    a02045b4
    History
appveyor.yml 442 B
platform:
- x86
- x64
version: 1.0.{build}
os: Visual Studio 2015
build_script:
- '@echo off'
- setlocal
- ps: >-
    If ($env:Platform -Match "x86") {
      $env:VCVARS_PLATFORM="x86"
    } Else {
      $env:VCVARS_PLATFORM="amd64"
    }
- call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
- call tools\windows\build.bat
# FIXME(windows) TODO(uucidl): reactivate examples
# - call tools\windows\build_examples.bat
- exit /b 0