From 8636e7d337876ccab30915ddd033ffa7f41a045f Mon Sep 17 00:00:00 2001 From: njlr Date: Fri, 19 Oct 2018 14:08:52 +0100 Subject: * Adds Buck build support --- BUCK | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 BUCK (limited to 'BUCK') 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', + ], +) -- cgit v1.2.1