summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-05-27 17:01:11 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-05-27 17:01:11 +0200
commit3bca9f85d241d6de591001df71f1205dbf384e84 (patch)
tree6ef00a42d9e15c9c50315eb30874097d0e6150eb /.appveyor.yml
parent01de4b54137704701241da98b9bfe12cf8a273ca (diff)
Update to AppVeyor because of changed Khronos repository (3)
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index cb7dab46..52241a55 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -26,9 +26,12 @@ install:
# The cmake build files expect a directory called inc
- ps: mkdir inc/CL
- git clone --depth 1 https://github.com/KhronosGroup/OpenCL-Headers.git inc/CL
- - ps: wget $opencl_registry/api/2.1/cl.hpp -OutFile inc/CL/cl.hpp # TODO: Remove?
+ - ps: wget $opencl_registry/api/2.1/cl.hpp -OutFile inc/CL/cl.hpp
+ # Custom fix for missing CL/cl.h
- ps: mkdir CL
- - ps: wget $opencl_registry/api/2.1/cl.hpp -OutFile CL/cl.hpp
+ - ps: pushd CL
+ - ps: mv ./inc/CL/opencl11/CL/* .
+ - ps: popd
# - ps: dir; if( $lastexitcode -eq 0 ){ dir include/CL } else { Write-Output boom }
# Create the static import lib in a directory called lib, so findopencl() will find it
- ps: mkdir lib