File: BUCK

package info (click to toggle)
argh 1.3.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 244 kB
  • sloc: cpp: 942; python: 24; makefile: 11
file content (35 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (3)
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 = 'argh', 
  header_namespace = '', 
  header_only = True, 
  exported_headers = [
    'argh.h', 
  ], 
  visibility = [
    'PUBLIC', 
  ], 
)

cxx_binary(
  name = 'tests', 
  header_namespace = '', 
  headers = [
    'doctest.h', 
  ], 
  srcs = [
    'argh_tests.cpp', 
  ], 
  deps = [
    ':argh', 
  ], 
)

cxx_binary(
  name = 'example', 
  srcs = [
    'example.cpp', 
  ], 
  deps = [
    ':argh', 
  ], 
)