Ensure CMake include directories get picked up

Metal shader libraries in Xcode use their own header search path and
ignore the standard header search path, even if it is populated. Since
CMake will populate the standard header search path, we can set the
Metal header search path to be a reference to that one.
This commit is contained in:
Darryl Pogue 2024-08-06 01:39:01 -07:00
parent 0f98ecbdd9
commit f27140edde
No known key found for this signature in database
GPG key ID: CB824715C3E6FD41

View file

@ -15,6 +15,7 @@ function(add_metal_shader_library TARGET)
XCODE_ATTRIBUTE_MTL_FAST_MATH "YES"
XCODE_ATTRIBUTE_MTL_ENABLE_DEBUG_INFO[variant=Debug] "INCLUDE_SOURCE"
XCODE_ATTRIBUTE_MTL_ENABLE_DEBUG_INFO[variant=RelWithDebInfo] "INCLUDE_SOURCE"
XCODE_ATTRIBUTE_MTL_HEADER_SEARCH_PATHS "$(HEADER_SEARCH_PATHS)"
)
if(_amsl_STANDARD AND _amsl_STANDARD MATCHES "metal([0-9]+)\.([0-9]+)")