You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cc_library(
name = "libA",
srcs = ["libA.cc"],
defines = ["MY_DEFINE"],
)
cc_binary(
name = "binX",
srcs = ["binX.cc"],
deps = [":libA"], # This will inherit libA's defines such that binX is compiled with -DMY_DEFINE
)