aboutsummaryrefslogtreecommitdiff
path: root/BUCK
diff options
context:
space:
mode:
Diffstat (limited to 'BUCK')
-rw-r--r--BUCK35
1 files changed, 35 insertions, 0 deletions
diff --git a/BUCK b/BUCK
new file mode 100644
index 0000000..7c6e98a
--- /dev/null
+++ b/BUCK
@@ -0,0 +1,35 @@
+prebuilt_cxx_library(
+ name = 'args',
+ header_namespace = '',
+ header_only = True,
+ exported_headers = [
+ 'args.hxx',
+ ],
+ visibility = [
+ 'PUBLIC',
+ ],
+)
+
+cxx_binary(
+ name = 'test',
+ header_namespace = '',
+ headers = [
+ 'catch.hpp',
+ ],
+ srcs = [
+ 'test.cxx',
+ ],
+ deps = [
+ ':args',
+ ],
+)
+
+cxx_binary(
+ name = 'gitlike',
+ srcs = [
+ 'gitlike.cxx',
+ ],
+ deps = [
+ ':args',
+ ],
+)