15 lines
496 B
YAML
15 lines
496 B
YAML
version: 1.0.{build}
|
|
install:
|
|
- cmd: curl -fsSL -o embree.zip "https://github.com/embree/embree/releases/download/v2.9.0/embree-2.9.0.win32.windows.zip"
|
|
- cmd: 7z x embree.zip
|
|
build_script:
|
|
- ps: >-
|
|
mkdir cmakebuild
|
|
|
|
cd cmakebuild
|
|
|
|
cmake .. -Dembree_DIR=..\embree-2.9.0.win32.windows\lib\cmake\embree-2.9.0
|
|
|
|
msbuild PACKAGE.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
artifacts:
|
|
- path: cmakebuild\*.zip |