dynarmic/.appveyor.yml
2016-12-19 00:48:27 +00:00

29 lines
524 B
YAML

# 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 ..