You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[UR][SYCL] Fix cmake LIST cache variables - LIST is not a valid cache type. (#17971)
This doesn't affect the behaviour of UR_EXTERNAL_DEPENDENCIES - since it
gets used as a list, if you try to set it to a string that cmake can't
convert to a list you get a fatal error (e.g. doing
`set(UR_EXTERNAL_DEPENDENCIES "my-dep my-other-dep")` rather than
`set(UR_EXTERNAL_DEPENDENCIES "my-dep;my-other-dep")`).
The list of valid cache variable types is here
https://cmake.org/cmake/help/latest/prop_cache/TYPE.html
0 commit comments