Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appveyor.yml - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98ce69baea971d8944813ad7bc88c2ad5b32ee6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: 1.0.{build}
image: Visual Studio 2015
environment:
  matrix:
  - GENERATOR: '"MinGW Makefiles"'
    BUILD_TYPE: Debug
  - GENERATOR: '"MinGW Makefiles"'
    BUILD_TYPE: Release
  - GENERATOR: '"Visual Studio 14 2015"'
    BUILD_TYPE: Debug
  - GENERATOR: '"Visual Studio 14 2015"'
    BUILD_TYPE: Release
  - GENERATOR: '"Visual Studio 14 2015 Win64"'
    BUILD_TYPE: Debug
  - GENERATOR: '"Visual Studio 14 2015 Win64"'
    BUILD_TYPE: Release
build_script:
- cmd: >-
    set

    mkdir build

    cd build

    set PATH=%PATH:C:\Program Files\Git\usr\bin;=%

    set PATH=C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;%PATH%

    cmake .. -G %GENERATOR% -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DSPDLOG_BUILD_BENCH=OFF

    cmake --build . --config %BUILD_TYPE%

test_script:
- ctest -VV -C "%BUILD_TYPE%"