- Testing currently doesn't work - VFS Dump is unused. You can use internal function for it - Demos are only for fun - Trace Dump & Trace Viewer (unsure, but ok) You can re-enable them by changing values: enableTests and enableMiscSubprojects in main premake file. In the future there should be xb command support to overwrite them
156 lines
3.3 KiB
Lua
156 lines
3.3 KiB
Lua
project_root = "../../../.."
|
|
include(project_root.."/tools/build")
|
|
|
|
group("src")
|
|
project("xenia-gpu-vulkan")
|
|
uuid("717590b4-f579-4162-8f23-0624e87d6cca")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
"fmt",
|
|
"glslang-spirv",
|
|
"xenia-base",
|
|
"xenia-gpu",
|
|
"xenia-ui",
|
|
"xenia-ui-vulkan",
|
|
"xxhash",
|
|
})
|
|
includedirs({
|
|
project_root.."/third_party/Vulkan-Headers/include",
|
|
})
|
|
local_platform_files()
|
|
files({
|
|
"../shaders/bytecode/vulkan_spirv/*.h",
|
|
})
|
|
|
|
if enableMiscSubprojects then
|
|
group("src")
|
|
project("xenia-gpu-vulkan-trace-viewer")
|
|
uuid("86a1dddc-a26a-4885-8c55-cf745225d93e")
|
|
single_library_windowed_app_kind()
|
|
language("C++")
|
|
links({
|
|
"xenia-apu",
|
|
"xenia-apu-nop",
|
|
"xenia-base",
|
|
"xenia-core",
|
|
"xenia-cpu",
|
|
"xenia-gpu",
|
|
"xenia-gpu-vulkan",
|
|
"xenia-hid",
|
|
"xenia-hid-nop",
|
|
"xenia-hid-skylander",
|
|
"xenia-kernel",
|
|
"xenia-patcher",
|
|
"xenia-ui",
|
|
"xenia-ui-vulkan",
|
|
"xenia-vfs",
|
|
})
|
|
links({
|
|
"aes_128",
|
|
"capstone",
|
|
"fmt",
|
|
"glslang-spirv",
|
|
"imgui",
|
|
"libavcodec",
|
|
"libavutil",
|
|
"mspack",
|
|
"snappy",
|
|
"xxhash",
|
|
})
|
|
includedirs({
|
|
project_root.."/third_party/Vulkan-Headers/include",
|
|
})
|
|
files({
|
|
"vulkan_trace_viewer_main.cc",
|
|
"../../ui/windowed_app_main_"..platform_suffix..".cc",
|
|
})
|
|
|
|
filter("architecture:x86_64")
|
|
links({
|
|
"xenia-cpu-backend-x64",
|
|
})
|
|
|
|
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-viewer.vcxproj.user"
|
|
if not os.isfile(user_file) then
|
|
debugdir(project_root)
|
|
debugargs({
|
|
"2>&1",
|
|
"1>scratch/stdout-trace-viewer.txt",
|
|
})
|
|
end
|
|
|
|
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-gpu",
|
|
"xenia-gpu-vulkan",
|
|
"xenia-hid",
|
|
"xenia-hid-nop",
|
|
"xenia-hid-skylander",
|
|
"xenia-kernel",
|
|
"xenia-ui",
|
|
"xenia-ui-vulkan",
|
|
"xenia-vfs",
|
|
"xenia-patcher",
|
|
})
|
|
links({
|
|
"aes_128",
|
|
"capstone",
|
|
"fmt",
|
|
"glslang-spirv",
|
|
"imgui",
|
|
"libavcodec",
|
|
"libavutil",
|
|
"mspack",
|
|
"snappy",
|
|
"xxhash",
|
|
})
|
|
includedirs({
|
|
project_root.."/third_party/Vulkan-Headers/include",
|
|
})
|
|
files({
|
|
"vulkan_trace_dump_main.cc",
|
|
"../../base/console_app_main_"..platform_suffix..".cc",
|
|
})
|
|
|
|
filter("architecture:x86_64")
|
|
links({
|
|
"xenia-cpu-backend-x64",
|
|
})
|
|
|
|
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
|
|
end |