load("@rules_cc//cc:defs.bzl", "cc_library") exports_files( ["CMakeLists.txt"], visibility = ["//visibility:public"], ) # Any library that depends on this library (directly or indirectly) can use angle brackets to # include headers from the root of the repo. # Every library target that uses cpp_library depends on this. cc_library( name = "include_hack", includes = ["."], visibility = ["//:__subpackages__"], )