[Vulkan] Trace dump tool
This commit is contained in:
@@ -22,3 +22,59 @@ project("xenia-gpu-vulkan")
|
|||||||
files({
|
files({
|
||||||
"../shaders/bytecode/vulkan_spirv/*.h",
|
"../shaders/bytecode/vulkan_spirv/*.h",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
group("src")
|
||||||
|
project("xenia-gpu-vulkan-trace-dump")
|
||||||
|
uuid("0dd0dd1c-b321-494d-ab9a-6c062f0c65cc")
|
||||||
|
kind("ConsoleApp")
|
||||||
|
language("C++")
|
||||||
|
links({
|
||||||
|
"xenia-apu",
|
||||||
|
"xenia-apu-nop",
|
||||||
|
"xenia-base",
|
||||||
|
"xenia-core",
|
||||||
|
"xenia-cpu",
|
||||||
|
"xenia-cpu-backend-x64",
|
||||||
|
"xenia-gpu",
|
||||||
|
"xenia-gpu-vulkan",
|
||||||
|
"xenia-hid",
|
||||||
|
"xenia-hid-nop",
|
||||||
|
"xenia-kernel",
|
||||||
|
"xenia-ui",
|
||||||
|
"xenia-ui-vulkan",
|
||||||
|
"xenia-vfs",
|
||||||
|
})
|
||||||
|
links({
|
||||||
|
"aes_128",
|
||||||
|
"capstone",
|
||||||
|
"fmt",
|
||||||
|
"glslang-spirv",
|
||||||
|
"imgui",
|
||||||
|
"libavcodec",
|
||||||
|
"libavutil",
|
||||||
|
"mspack",
|
||||||
|
"snappy",
|
||||||
|
"xxhash",
|
||||||
|
})
|
||||||
|
files({
|
||||||
|
"vulkan_trace_dump_main.cc",
|
||||||
|
"../../base/console_app_main_"..platform_suffix..".cc",
|
||||||
|
})
|
||||||
|
|
||||||
|
filter("platforms:Linux")
|
||||||
|
links({
|
||||||
|
"X11",
|
||||||
|
"xcb",
|
||||||
|
"X11-xcb",
|
||||||
|
})
|
||||||
|
|
||||||
|
filter("platforms:Windows")
|
||||||
|
-- Only create the .user file if it doesn't already exist.
|
||||||
|
local user_file = project_root.."/build/xenia-gpu-vulkan-trace-dump.vcxproj.user"
|
||||||
|
if not os.isfile(user_file) then
|
||||||
|
debugdir(project_root)
|
||||||
|
debugargs({
|
||||||
|
"2>&1",
|
||||||
|
"1>scratch/stdout-trace-dump.txt",
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user