aboutsummaryrefslogtreecommitdiff
path: root/BUCK
blob: 7c6e98a23cd0fd5e6589fe10757c26db6ccb1cfe (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
26
27
28
29
30
31
32
33
34
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', 
  ], 
)