Mercurial
comparison third_party/sqlite3/BUILD @ 173:827c6ac504cd hg-web
Merged in default here.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 19 Jan 2026 18:59:10 -0800 |
| parents | 589bab390fb4 |
| children |
comparison
equal
deleted
inserted
replaced
| 151:c033667da5f9 | 173:827c6ac504cd |
|---|---|
| 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 ) |