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