Mercurial
view dowa/BUILD @ 118:249881ceff7b
[PostDog] Updated some core logic. Will create a bookmark for postdog until the launch as this is annoying to deal with.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Wed, 07 Jan 2026 13:24:38 -0800 |
| parents | 655ea0b661fd |
| children | f3084bca7317 |
line wrap: on
line source
load("@rules_cc//cc:cc_library.bzl", "cc_library") load("@rules_cc//cc:cc_binary.bzl", "cc_binary") load("@rules_cc//cc:cc_test.bzl", "cc_test") cc_library( name = "stb_ds", hdrs = ["stb_ds.h"], visibility = ["//visibility:public"], ) cc_library( name = "dowa", srcs = [ "d_string.c", "d_memory.c", "d_math.c", ], hdrs = [ "dowa.h", "dowa_internal.h", ], visibility = ["//visibility:public"], ) cc_test( name = "dowa_test", srcs = ["dowa_test.c"], deps = [":dowa"], args = [], data = glob([ "test_folder/**", ]), copts = ["-fsanitize=address", "-g"], linkopts = ["-fsanitize=address"], )