[D3D12] Create the project and link D3D libraries

This commit is contained in:
Triang3l
2018-07-18 11:42:51 +03:00
parent ba7dc6b2d7
commit c2b2a9f376
4 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
project_root = "../../../.."
include(project_root.."/tools/build")
group("src")
project("xenia-gpu-d3d12")
uuid("c057eae4-e7bb-4113-9a69-1fe07b735c49")
kind("StaticLib")
language("C++")
links({
"xenia-base",
"xenia-gpu",
"xxhash",
})
defines({
})
includedirs({
project_root.."/third_party/gflags/src",
})
local_platform_files()
files({
})