Allow embedding multiple shader targets

The CMake Xcode project generator wasn't happy if there were multiple
shader targets specified as resources because the target names weren't
quoted.
This commit is contained in:
Darryl Pogue 2024-08-06 01:40:23 -07:00
parent f27140edde
commit 36a9727a6a
No known key found for this signature in database
GPG key ID: CB824715C3E6FD41

View file

@ -38,7 +38,7 @@ function(target_embed_metal_shader_libraries TARGET)
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.28 AND ${CMAKE_GENERATOR} STREQUAL "Xcode")
set_target_properties(${TARGET} PROPERTIES
XCODE_EMBED_RESOURCES ${_temsl_UNPARSED_ARGUMENTS}
XCODE_EMBED_RESOURCES "${_temsl_UNPARSED_ARGUMENTS}"
)
else()
foreach(SHADERLIB IN LISTS _temsl_UNPARSED_ARGUMENTS)