File tree Expand file tree Collapse file tree
third_party/usr_local_override Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ###############################################################################
2+ # Bazel now uses Bzlmod by default to manage external dependencies.
3+ # Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
4+ #
5+ # For more details, please check https://github.com/bazelbuild/bazel/issues/18958
6+ ###############################################################################
7+ module (name = "cpp-template" , version = "1.0" )
8+
9+ bazel_dep (name = "rules_cc" , version = "0.0.12" )
10+
11+ bazel_dep (name = "glog" , version = "0.7.1" )
12+ bazel_dep (name = "gflags" , version = "2.2.2" )
13+ bazel_dep (name = "abseil-cpp" , version = "20250512.0" )
14+
15+ bazel_dep (name = "usr_local" , version = "1.0" )
16+ bazel_dep (name = "zlib" , version = "1.0" )
17+
18+ local_path_override (
19+ module_name = "usr_local" ,
20+ path = "third_party/usr_local_override" ,
21+ )
22+
23+ local_path_override (
24+ module_name = "zlib" ,
25+ path = "third_party/zlib_override" ,
26+ )
Original file line number Diff line number Diff line change 1+ module (name = "usr_local" , version = "1.0" )
Original file line number Diff line number Diff line change 1+ cc_library(
2+ name = "usr_local_libs",
3+ hdrs = glob(["include/**/*.h"]),
4+ includes = ["include"],
5+ linkopts = ["-L/usr/local/lib"],
6+ visibility = ["//visibility:public"],
7+ )
You can’t perform that action at this time.
0 commit comments