diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-03-27 17:30:18 +0100 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-04-08 01:47:09 +0200 |
commit | e167af37373dd14e9d1fe888bcc482d0bd071951 (patch) | |
tree | 5a2f9ec90dd07e9485ae24b086f56ee251cfd1a5 /drivers/vulkan/SCsub | |
parent | af424b1c7ca5e09156d3e5b9bd914848ee0fed86 (diff) |
Display Server support
Diffstat (limited to 'drivers/vulkan/SCsub')
-rw-r--r-- | drivers/vulkan/SCsub | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/vulkan/SCsub b/drivers/vulkan/SCsub index 6390494c41..35c2d61530 100644 --- a/drivers/vulkan/SCsub +++ b/drivers/vulkan/SCsub @@ -7,7 +7,12 @@ env.add_source_files(env.drivers_sources, "*.cpp") if env["platform"] == "android": # Use NDK Vulkan headers thirdparty_dir = env["ANDROID_NDK_ROOT"] + "/sources/third_party/vulkan/src" - thirdparty_includes = [thirdparty_dir, thirdparty_dir + "/include", thirdparty_dir + "/layers", thirdparty_dir + "/layers/generated"] + thirdparty_includes = [ + thirdparty_dir, + thirdparty_dir + "/include", + thirdparty_dir + "/layers", + thirdparty_dir + "/layers/generated", + ] env.Prepend(CPPPATH=thirdparty_includes) elif env["builtin_vulkan"]: # Use bundled Vulkan headers |