mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
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:
parent
f27140edde
commit
36a9727a6a
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue