summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/BUILD b/BUILD
index 58dc7b43..69fa5788 100644
--- a/BUILD
+++ b/BUILD
@@ -1,9 +1,9 @@
1genrule( 1genrule(
2 name = "copy_headers", 2 name = "copy_headers",
3 srcs = [ 3 srcs = [
4 "//c-toxcore/toxav:public", 4 "//c-toxcore/toxav:public_headers",
5 "//c-toxcore/toxcore:public", 5 "//c-toxcore/toxcore:public_headers",
6 "//c-toxcore/toxencryptsave:public", 6 "//c-toxcore/toxencryptsave:public_headers",
7 ], 7 ],
8 outs = [ 8 outs = [
9 "tox/toxav.h", 9 "tox/toxav.h",
@@ -11,9 +11,9 @@ genrule(
11 "tox/toxencryptsave.h", 11 "tox/toxencryptsave.h",
12 ], 12 ],
13 cmd = """ 13 cmd = """
14 cp $(location //c-toxcore/toxav:public) $(GENDIR)/c-toxcore/tox/toxav.h 14 cp $(location //c-toxcore/toxav:public_headers) $(GENDIR)/c-toxcore/tox/toxav.h
15 cp $(location //c-toxcore/toxcore:public) $(GENDIR)/c-toxcore/tox/tox.h 15 cp $(location //c-toxcore/toxcore:public_headers) $(GENDIR)/c-toxcore/tox/tox.h
16 cp $(location //c-toxcore/toxencryptsave:public) $(GENDIR)/c-toxcore/tox/toxencryptsave.h 16 cp $(location //c-toxcore/toxencryptsave:public_headers) $(GENDIR)/c-toxcore/tox/toxencryptsave.h
17 """, 17 """,
18) 18)
19 19