diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-08-12 14:24:54 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-08-12 14:25:15 +0300 |
commit | d7957a2a2091a00c8ccdebb6900e5a0f21aa205d (patch) | |
tree | 86b99a97ef9540d46183ac9667c58cb124880821 /platform/windows/detect.py | |
parent | 67fc611bda7b55b3eeab87f683a5c95ea0d0313f (diff) | |
download | redot-engine-d7957a2a2091a00c8ccdebb6900e5a0f21aa205d.tar.gz |
Use "volk" instead of statically linked Vulkan loader.
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r-- | platform/windows/detect.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 287ece1d29..9154f7749e 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -278,10 +278,8 @@ def configure_msvc(env, manual_msvc_config): ] env.AppendUnique(CPPDEFINES=["VULKAN_ENABLED"]) - if not env["builtin_vulkan"]: + if not env["use_volk"]: LIBS += ["vulkan"] - else: - LIBS += ["cfgmgr32"] # env.AppendUnique(CPPDEFINES = ['OPENGL_ENABLED']) LIBS += ["opengl32"] @@ -456,10 +454,8 @@ def configure_mingw(env): ) env.Append(CPPDEFINES=["VULKAN_ENABLED"]) - if not env["builtin_vulkan"]: + if not env["use_volk"]: env.Append(LIBS=["vulkan"]) - else: - env.Append(LIBS=["cfgmgr32"]) ## TODO !!! Re-enable when OpenGLES Rendering Device is implemented !!! # env.Append(CPPDEFINES=['OPENGL_ENABLED']) |