mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
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
501 B
Lua
28 lines
501 B
Lua
group("third_party")
|
|
project("imgui")
|
|
uuid("ed9271c4-b0a1-42ef-8403-067b11bf49d0")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
})
|
|
defines({
|
|
"_LIB",
|
|
})
|
|
includedirs({
|
|
"imgui",
|
|
})
|
|
files({
|
|
"imgui/imconfig.h",
|
|
"imgui/imgui.cpp",
|
|
"imgui/imgui.h",
|
|
"imgui/imgui_draw.cpp",
|
|
"imgui/imgui_demo.cpp",
|
|
"imgui/imgui_internal.h",
|
|
"imgui/stb_rect_pack.h",
|
|
"imgui/stb_textedit.h",
|
|
"imgui/stb_truetype.h",
|
|
})
|
|
buildoptions({
|
|
"/wd4312", -- Ugh.
|
|
})
|