mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 03:30:57 +00:00
def1c2c253
This will be used for formatting messages for the user. The idea is to have something more usable than the Mac OS toolbox ParamText function.
17 lines
310 B
Python
17 lines
310 B
Python
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
|
|
load("//bazel:copts.bzl", "COPTS")
|
|
|
|
cc_test(
|
|
name = "pstrbuilder_test",
|
|
size = "small",
|
|
srcs = [
|
|
"pstrbuilder.c",
|
|
"pstrbuilder.h",
|
|
"pstrbuilder_test.c",
|
|
],
|
|
copts = COPTS,
|
|
deps = [
|
|
"//lib",
|
|
],
|
|
)
|