aboutsummaryrefslogtreecommitdiff
path: root/BUCK
blob: 7a1ec0597362d3da7885f813225c22de98a4638e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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', 
  ], 
)