build: remove obsolete appveyor script stuff for downloading embree binaries

This commit is contained in:
Eric Wasylishen 2016-06-18 17:30:08 -06:00
parent 3026c4a324
commit 6060a3d61f
1 changed files with 2 additions and 6 deletions

View File

@ -5,10 +5,6 @@ platform:
version: 1.0.{build}
install:
- git submodule update --init --recursive
- ps: Invoke-WebRequest 'https://github.com/embree/embree/releases/download/v2.10.0/embree-2.10.0.x64.windows.zip' -OutFile 'embree64.zip'
- ps: 7z x embree64.zip -oc:\
- ps: Invoke-WebRequest 'https://github.com/embree/embree/releases/download/v2.10.0/embree-2.10.0.win32.windows.zip' -OutFile 'embree.zip'
- ps: 7z x embree.zip -oc:\
build_script:
- ps: >-
$env:Path += ";C:\cygwin64\bin"
@ -18,9 +14,9 @@ build_script:
cd cmakebuild
If ($env:Platform -Match "x64") {
cmake .. -Dembree_DIR="c:/embree-2.10.0.x64.windows/lib/cmake/embree-2.10.0" -DCMAKE_GENERATOR_PLATFORM=x64
cmake .. -DCMAKE_GENERATOR_PLATFORM=x64
} Else {
cmake .. -Dembree_DIR="c:/embree-2.10.0.win32.windows/lib/cmake/embree-2.10.0"
cmake ..
}
msbuild PACKAGE.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"