30 lines
970 B
Plaintext
30 lines
970 B
Plaintext
# SPDX-FileCopyrightText: 2020-2024 Google LLC
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
|
|
# KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
|
|
# SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
|
|
# https://www.khronos.org/registry/
|
|
|
|
config("spv_headers_public_config") {
|
|
include_dirs = [ "include" ]
|
|
}
|
|
|
|
source_set("spv_headers") {
|
|
sources = [
|
|
"include/spirv/1.2/GLSL.std.450.h",
|
|
"include/spirv/1.2/OpenCL.std.h",
|
|
"include/spirv/1.2/spirv.h",
|
|
"include/spirv/1.2/spirv.hpp",
|
|
"include/spirv/unified1/GLSL.std.450.h",
|
|
"include/spirv/unified1/NonSemanticClspvReflection.h",
|
|
"include/spirv/unified1/NonSemanticDebugPrintf.h",
|
|
"include/spirv/unified1/NonSemanticVkspReflection.h",
|
|
"include/spirv/unified1/OpenCL.std.h",
|
|
"include/spirv/unified1/spirv.h",
|
|
"include/spirv/unified1/spirv.hpp",
|
|
]
|
|
|
|
public_configs = [ ":spv_headers_public_config" ]
|
|
}
|