mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
15 lines
327 B
CMake
15 lines
327 B
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file LICENCE.txt or https://cmake.org/licensing for details.
|
|
|
|
set(ShaderBase_HEADERS
|
|
AAPLShaderTypes.h
|
|
)
|
|
|
|
set(ShaderBase_SOURCES
|
|
AAPLShaders.metal
|
|
)
|
|
|
|
add_metal_shader_library(ShaderBase
|
|
${ShaderBase_SOURCES}
|
|
${ShaderBase_HEADERS}
|
|
)
|