load("@rules_cc//cc:defs.bzl", "cc_library") cc_library( name = "implot", srcs = [ "implot.cpp", "implot_demo.cpp", "implot_items.cpp", ], hdrs = [ "implot.h", "implot_internal.h", ], copts = select({ "@platforms//os:windows": [], "//conditions:default": ["-Wno-implicit-fallthrough"], }), include_prefix = "implot", includes = ["."], visibility = ["//visibility:public"], deps = ["@imgui"], )