syncfiles/macos/BUILD.bazel
Dietrich Epp def1c2c253 Add Pascal string builder module
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.
2023-04-19 22:14:34 -04:00

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",
],
)