diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-08-05 11:48:54 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-11 11:59:04 +0100 |
commit | 511f65214fcc95011525e2f23e4d1be7cd7b8731 (patch) | |
tree | b9ab281613cc08c3a41767a5e342fadc85821178 /drivers/SCsub | |
parent | 324082471de5e923fe8d03e43085ea52e1f117e4 (diff) |
SCons: Streamline Vulkan buildsystem + fixups
- Renamed option to `builtin_vulkan`, since that's the name of the
library and if we were to add new components, we'd likely use that
same option.
- Merge `vulkan_loader/SCsub` in `vulkan/SCsub`.
- Accordingly, don't use built-in Vulkan headers when not building
against the built-in loader library.
- Drop Vulkan registry which we don't appear to need currently.
- Style and permission fixes.
Diffstat (limited to 'drivers/SCsub')
-rw-r--r-- | drivers/SCsub | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/SCsub b/drivers/SCsub index 29f3c30325..48befd213c 100644 --- a/drivers/SCsub +++ b/drivers/SCsub @@ -22,9 +22,6 @@ SConscript('alsamidi/SCsub') SConscript('coremidi/SCsub') SConscript('winmidi/SCsub') -if env["builtin_vulkan_loader"] and not (env["platform"]=="osx" and env['use_static_mvk']): - SConscript('vulkan_loader/SCsub') - # Graphics drivers if (env["platform"] != "server"): # SConscript('gles3/SCsub') |