Mercurial
diff seobeo/BUILD @ 18:fa2b8af609d9
[Seobeo] Fixed a bug with pathing. Support SSL.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 06 Oct 2025 08:21:34 -0700 |
| parents | d97ec3ded2ae |
| children | 2852b2e2363f |
line wrap: on
line diff
--- a/seobeo/BUILD Sat Oct 04 07:53:12 2025 -0700 +++ b/seobeo/BUILD Mon Oct 06 08:21:34 2025 -0700 @@ -1,6 +1,7 @@ load("@rules_cc//cc:cc_binary.bzl", "cc_binary") load("@rules_cc//cc:cc_library.bzl", "cc_library") + filegroup( name = "seobeo_hdrs", srcs = [ @@ -28,7 +29,10 @@ "os/s_macos_edge.c", ], hdrs = [":seobeo_hdrs"], - deps = ["//dowa:dowa"], + deps = [ + "//dowa:dowa", + "@openssl//:ssl", + ], target_compatible_with = [ "@platforms//os:osx", ], @@ -43,7 +47,10 @@ "os/s_linux_edge.c", ], hdrs = [":seobeo_headers"], - deps = ["//dowa:dowa"], + deps = [ + "//dowa:dowa", + "@openssl//:ssl", + ], target_compatible_with = [ "@platforms//os:linux", ],