aboutsummaryrefslogtreecommitdiff
path: root/examples/BUCK
diff options
context:
space:
mode:
Diffstat (limited to 'examples/BUCK')
-rw-r--r--examples/BUCK19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/BUCK b/examples/BUCK
new file mode 100644
index 0000000..2f5b01b
--- /dev/null
+++ b/examples/BUCK
@@ -0,0 +1,19 @@
+cxx_binary(
+ name = 'gitlike',
+ srcs = [
+ 'gitlike.cxx',
+ ],
+ deps = [
+ '//:args',
+ ],
+)
+
+cxx_binary(
+ name = 'completion',
+ srcs = [
+ 'completion.cxx',
+ ],
+ deps = [
+ '//:args',
+ ],
+)