build: remove obsolete appveyor script stuff for downloading embree binaries
This commit is contained in:
parent
3026c4a324
commit
6060a3d61f
|
|
@ -5,10 +5,6 @@ platform:
|
||||||
version: 1.0.{build}
|
version: 1.0.{build}
|
||||||
install:
|
install:
|
||||||
- git submodule update --init --recursive
|
- 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:
|
build_script:
|
||||||
- ps: >-
|
- ps: >-
|
||||||
$env:Path += ";C:\cygwin64\bin"
|
$env:Path += ";C:\cygwin64\bin"
|
||||||
|
|
@ -18,9 +14,9 @@ build_script:
|
||||||
cd cmakebuild
|
cd cmakebuild
|
||||||
|
|
||||||
If ($env:Platform -Match "x64") {
|
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 {
|
} 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"
|
msbuild PACKAGE.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue