Lots of bugs/rough edges/etc - issues will be filed. Old-style debugging still works (just use --emit_source_annotations to get the helpful movs back and --break_on_instruction will still fire).
28 lines
556 B
Lua
28 lines
556 B
Lua
project_root = "../../../.."
|
|
include(project_root.."/build_tools")
|
|
|
|
group("src")
|
|
project("xenia-debug-ui")
|
|
uuid("9193a274-f4c2-4746-bd85-93fcfc5c3e38")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
"elemental-forms",
|
|
"glew",
|
|
"imgui",
|
|
"xenia-base",
|
|
"xenia-cpu",
|
|
"xenia-debug",
|
|
"xenia-ui",
|
|
"xenia-ui-gl",
|
|
})
|
|
defines({
|
|
"GLEW_STATIC=1",
|
|
"GLEW_MX=1",
|
|
})
|
|
includedirs({
|
|
project_root.."/build_tools/third_party/gflags/src",
|
|
project_root.."/third_party/elemental-forms/src",
|
|
})
|
|
local_platform_files()
|