mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
26 lines
437 B
YAML
26 lines
437 B
YAML
version: '{build}'
|
|
os: Previous Visual Studio 2015
|
|
|
|
configuration:
|
|
- Debug
|
|
|
|
environment:
|
|
matrix:
|
|
- STATIC: OFF
|
|
- STATIC: ON
|
|
|
|
init: []
|
|
install: []
|
|
before_build:
|
|
- git submodule update --init --recursive --remote
|
|
- cmake -H. -Bbuild -G"Visual Studio 14 2015 Win64" -DSTATIC=%STATIC% -DSAMPLES=ON -DBENCHMARKS=ON
|
|
|
|
build:
|
|
project: build/xlnt_all.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
|
|
test_script:
|
|
- cd build/bin
|
|
- xlnt.test.exe
|