diff options
author | MrBBBaiXue <mrbbbaixue@outlook.com> | 2023-12-13 17:58:38 +0100 |
---|---|---|
committer | MrBBBaiXue <mrbbbaixue@outlook.com> | 2024-01-24 20:11:43 +0800 |
commit | ea2c6f1d0b5cab38a38b986c3af1345cbd59f633 (patch) | |
tree | 70acb13ae08ac7ecc6f4daf787fa730ca69e0976 /drivers/d3d12/SCsub | |
parent | 74c32faa78b54863f8f25c538083907c2bf71791 (diff) | |
download | redot-engine-ea2c6f1d0b5cab38a38b986c3af1345cbd59f633.tar.gz |
Add a python script to install Direct3D 12 SDK components.
This makes it much faster to get started with Direct3D 12 builds,
as you only need to run `python .\misc\scripts\install_d3d12_sdk_windows.py`
then run `scons d3d12=yes`.
This installs DirectX Shader Compiler, Mesa NIR, WinPixEventRuntime
and DirectX 12 Agility SDK.
- Define a default path that uses the locations from the script.
- Now the default path is in "%LOCALAPPDATA%\Godot\build_deps\"
- Updated CI to use this new python script.
Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro>
Diffstat (limited to 'drivers/d3d12/SCsub')
-rw-r--r-- | drivers/d3d12/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/d3d12/SCsub b/drivers/d3d12/SCsub index a49d55ebc0..6b23e1bad0 100644 --- a/drivers/d3d12/SCsub +++ b/drivers/d3d12/SCsub @@ -25,7 +25,7 @@ env_d3d12_rdd.Append(CPPPATH=["#thirdparty/d3d12ma"]) # Agility SDK. -if env["agility_sdk_path"] != "": +if env["agility_sdk_path"] != "" and os.path.exists(env["agility_sdk_path"]): env_d3d12_rdd.Append(CPPDEFINES=["AGILITY_SDK_ENABLED"]) if env["agility_sdk_multiarch"]: env_d3d12_rdd.Append(CPPDEFINES=["AGILITY_SDK_MULTIARCH_ENABLED"]) @@ -33,7 +33,7 @@ if env["agility_sdk_path"] != "": # PIX. -if env["pix_path"] != "": +if env["pix_path"] != "" and os.path.exists(env["pix_path"]): env_d3d12_rdd.Append(CPPDEFINES=["PIX_ENABLED"]) env_d3d12_rdd.Append(CPPPATH=[env["pix_path"] + "/Include"]) |