diff options
author | Taylor C. Richberger <taywee@gmx.com> | 2018-10-20 13:31:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-20 13:31:54 -0600 |
commit | 34292e2a577325088780d54b94db56e5c9b270e9 (patch) | |
tree | 5472428dbde28fc076fad0a063dd806c3486f790 /BUCK | |
parent | Merge pull request #65 from Rholais/patch-1 (diff) | |
parent | * Updates BUCK files (diff) | |
download | args.hxx-34292e2a577325088780d54b94db56e5c9b270e9.tar.xz |
Merge pull request #67 from njlr/master
Buck build support
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', + ], +) |