summaryrefslogtreecommitdiffstats
path: root/platform/windows/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-01-16 15:07:44 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-01-16 15:07:44 +0100
commit35aee0e3ad66e0f4b9359e1776f86fe709834ed9 (patch)
treee76a9b7450afdf9586b4284cb64d807fd33364c4 /platform/windows/detect.py
parent079d58be9c582a6f88ce3c4bbf9d80b255350989 (diff)
parentf3a24e082c7e9e4ee89a16c77684d89e04e558d6 (diff)
downloadredot-engine-35aee0e3ad66e0f4b9359e1776f86fe709834ed9.tar.gz
Merge pull request #87247 from bruvzg/win_remove_dxil_check
[Windows] Remove `dxc_path` check.
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r--platform/windows/detect.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py
index bc04057793..79698f5bd7 100644
--- a/platform/windows/detect.py
+++ b/platform/windows/detect.py
@@ -441,10 +441,6 @@ def configure_msvc(env, vcvars_msvc_config):
LIBS += ["vulkan"]
if env["d3d12"]:
- if env["dxc_path"] == "":
- print("The Direct3D 12 rendering driver requires dxc_path to be set.")
- sys.exit(255)
-
env.AppendUnique(CPPDEFINES=["D3D12_ENABLED", "RD_ENABLED"])
LIBS += ["d3d12", "dxgi", "dxguid"]
LIBS += ["version"] # Mesa dependency.