diff options
| author | Dr. Chat <arkolbed@gmail.com> | 2018-05-05 17:11:18 -0500 |
|---|---|---|
| committer | Dr. Chat <arkolbed@gmail.com> | 2018-05-05 17:13:09 -0500 |
| commit | 53be87f6ba4008ff01d0811d29602606b250045d (patch) | |
| tree | 51f1ddb04be0b4087abdc24bae4ec3721e325b8b /third_party/volk.lua | |
| parent | c5dbcc7e80bfa6b859a13799baf540495fec63d4 (diff) | |
| parent | 30f8fe7bb0d02bf1e09ec139e97c1a4d51defde8 (diff) | |
Merge mastertexsplit
Diffstat (limited to 'third_party/volk.lua')
| -rw-r--r-- | third_party/volk.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/volk.lua b/third_party/volk.lua new file mode 100644 index 000000000..7ba0dd618 --- /dev/null +++ b/third_party/volk.lua @@ -0,0 +1,30 @@ +group("third_party") +project("volk") + uuid("C9781C93-2DF5-47A2-94EE-2C5EBED61239") + kind("StaticLib") + language("C") + + defines({ + "_LIB", + "API_NAME=\"vulkan\"", + }) + removedefines({ + "_UNICODE", + "UNICODE", + }) + includedirs({ + "volk", + }) + files({ + "volk/volk.c", + "volk/volk.h", + }) + + filter("platforms:Windows") + defines({ + "VK_USE_PLATFORM_WIN32_KHR", + }) + filter("platforms:Linux") + defines({ + "VK_USE_PLATFORM_XCB_KHR", + }) |
