1 Star 0 Fork 31

leon/third_party_opencl-headers

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
conanfile.py 629 Bytes
一键复制 编辑 原始数据 按行查看 历史
leon 提交于 2023-12-19 12:46 +08:00 . update opencl header version to v2022.05.18
from conans import ConanFile, tools, CMake
import os
class OpenCLHeadersConan(ConanFile):
name = "opencl-headers"
version = "20190502"
license = "Apache-2.0"
author = "Khronos Group <webmaster@khronos.org>"
url = "https://github.com/KhronosGroup/OpenCL-ICD-Loader"
description = "Khronos OpenCL Headers"
topics = ("khronos", "opencl", "headers")
exports_sources = "CMakeLists.txt", "CL/*"
no_copy_source = True
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.install()
def package_id(self):
self.info.header_only()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lengyang3/third_party_opencl-headers.git
git@gitee.com:lengyang3/third_party_opencl-headers.git
lengyang3
third_party_opencl-headers
third_party_opencl-headers
master

搜索帮助