[D3D12] Add DXBC tokens and checksum

This commit is contained in:
Triang3l
2018-08-27 15:18:30 +03:00
parent 629a8e0e25
commit 8ced574c6f
7 changed files with 3101 additions and 0 deletions

18
third_party/dxbc.lua vendored Normal file
View File

@@ -0,0 +1,18 @@
group("third_party")
project("dxbc")
uuid("c96688ca-51ca-406e-aeef-068734a67abe")
kind("StaticLib")
language("C++")
links({
})
defines({
"_LIB",
})
includedirs({
"dxbc",
})
files({
"dxbc/d3d12TokenizedProgramFormat.hpp",
"dxbc/DXBCChecksum.cpp",
"dxbc/DXBCChecksum.h",
})