aboutsummaryrefslogtreecommitdiffhomepage
path: root/.appveyor.yml
blob: 2047f6a60516e1a72fe49d6628f5d9a97c3c982a (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
# shallow clone
clone_depth: 5

os: Visual Studio 2015

platform:
  - x64

configuration:
  - Release

install:
  - git submodule update --init --recursive
  - cd externals
  - git clone https://github.com/citra-emu/ext-boost boost
  - cd ..

before_build:
  - mkdir build
  - cd build
  - cmake .. -G "Visual Studio 14 2015 Win64" -DDYNARMIC_USE_SYSTEM_BOOST=0 -DBoost_INCLUDE_DIRS=externals/boost
  - cd ..

build:
  project: build/dynarmic.sln
  parallel: true

test_script:
  - cd build && ctest -VV -C Release && cd ..