Mercurial
comparison third_party/sqlite3/BUILD @ 167:589bab390fb4
[ThirdParty] Added sqlite3 to the third_party.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 19 Jan 2026 16:28:45 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 166:78ea8d5ccc87 | 167:589bab390fb4 |
|---|---|
| 1 load("@rules_cc//cc:defs.bzl", "cc_library") | |
| 2 | |
| 3 package(default_visibility = ["//visibility:public"]) | |
| 4 | |
| 5 COMMON_SRCS = glob(["*.c"]) | |
| 6 COMMON_HDRS = glob(["*.h"]) | |
| 7 | |
| 8 cc_library( | |
| 9 name = "sqlite3", | |
| 10 srcs = COMMON_SRCS, | |
| 11 hdrs = COMMON_HDRS, | |
| 12 ) |