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: ad4ab32a5f0184879bb15804f24a1c7da4165605 (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 14 2015" . && cd -
  - cd tests && cmake -G "Visual Studio 14 2015" . && cd -