aboutsummaryrefslogtreecommitdiff
path: root/toolchains/cc/objc_example/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'toolchains/cc/objc_example/BUILD')
-rw-r--r--toolchains/cc/objc_example/BUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/toolchains/cc/objc_example/BUILD b/toolchains/cc/objc_example/BUILD
new file mode 100644
index 00000000..27de3587
--- /dev/null
+++ b/toolchains/cc/objc_example/BUILD
@@ -0,0 +1,9 @@
+objc_library(
+ name = "hello",
+ srcs = [
+ "defs/defs.h",
+ "hello.m",
+ ],
+ copts = ["-iquote $(execpath defs)"],
+ data = ["defs"],
+)