diff options
Diffstat (limited to 'BUCK')
-rw-r--r-- | BUCK | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +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', + ], +) |