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

appveyor.yml - github.com/cxong/tinydir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4498e46283f374573d1b7efda0a598733cdc3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: 1.2

environment:
  matrix:
    - project_name: samples/tinydir.sln
    - project_name: tests/tinydir_tests.sln

# Only build if file changes here
only_commits:
  files:
    - samples/
    - tests/
    - tinydir.h

image: Visual Studio 2015

build:
  project: $(project_name)

before_build:
  - cd samples && cmake -G "Visual Studio 2015" . && cd -
  - cd tests && cmake -G "Visual Studio 2015" . && cd -