mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-17 03:29:12 +01:00
d5d60c6e64
Allows us to migrate off of printf specifiers and have more type-safe formatting facilities. It also allows for custom type support as well. fmt is also on track to have part of it standardized within C++2a, so this will also lessen the transitional work necessary later on by allowing new code to use it. This simply adds the library but doesn't do anything with it yet.
35 lines
649 B
YAML
Executable File
35 lines
649 B
YAML
Executable File
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
clone_depth: 1
|
|
|
|
platform:
|
|
- Win32
|
|
- x64
|
|
|
|
image:
|
|
- Visual Studio 2013
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
|
|
environment:
|
|
CTEST_OUTPUT_ON_FAILURE: 1
|
|
MSVC_DEFAULT_OPTIONS: ON
|
|
BUILD: msvc
|
|
|
|
before_build:
|
|
- mkdir build
|
|
- cd build
|
|
|
|
build_script:
|
|
- python ../support/appveyor-build.py
|
|
|
|
on_failure:
|
|
- appveyor PushArtifact Testing/Temporary/LastTest.log
|
|
- appveyor AddTest test
|
|
|
|
# Uncomment this to debug AppVeyor failures.
|
|
#on_finish:
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|