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
The reason is because dxcompiler.dll and dxil.dll are not installed into the folder.
The problem here is that both dlls reside in Windows SDK folder, and there is no way for CMake to know its location.
For build, the dlls are copied in Visual Studio post-build step using the $(WindowsSdkDir) VS variable. This variable can't be used in install.
It should be possible to read the path from the environment variable similar to $ENV{WindowsSDKVersion}
The text was updated successfully, but these errors were encountered:
The reason is because dxcompiler.dll and dxil.dll are not installed into the folder.
The problem here is that both dlls reside in Windows SDK folder, and there is no way for CMake to know its location.
For build, the dlls are copied in Visual Studio post-build step using the
$(WindowsSdkDir)
VS variable. This variable can't be used in install.It should be possible to read the path from the environment variable similar to
$ENV{WindowsSDKVersion}
The text was updated successfully, but these errors were encountered: