Files
Xenia-Canary/src/xenia/debug/ui/premake5.lua
Ben Vanik 5d033f9cb3 A new debugger.
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).
2015-09-20 21:31:05 -07:00

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()