load("@rules_cc//cc:defs.bzl", "cc_library") | |
cc_library( | |
name = "imgui", | |
srcs = [ | |
"imgui.cpp", | |
"imgui_demo.cpp", | |
"imgui_draw.cpp", | |
"imgui_tables.cpp", | |
"imgui_widgets.cpp", | |
], | |
hdrs = [ | |
"imconfig.h", | |
"imgui.h", | |
"imgui_internal.h", | |
"imstb_rectpack.h", | |
"imstb_textedit.h", | |
"imstb_truetype.h", | |
], | |
include_prefix = "imgui", | |
visibility = ["//visibility:public"], | |
) |